


body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Модалка */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    display: flex;
    flex-direction: row;
   justify-content: space-between;
    margin: 5% auto;
   
    width: 800px;
    max-width: 90%;
   
    background-color: #060725;
   
    padding: 30px;
    border: 1px solid #00b6ef;
   
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    @media screen and (max-width:800px) {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 90%;
    }
}
#modalLogin .modal-content{
    width: 400px;
    border-radius: 22px;
    @media screen and (max-width:800px) {
       width: 100%;
        
    }
}
#modalLogin .form-container{
    width: 100%;
}
#modalLogin .form-title{
    margin-bottom: 20px;
}
#modalLogin .login-text{
    color: #ccc;
}
#modalLogin #openModalBtn{
    background: #ffffff21;
    color: #fff;
    border: none;
    border-radius: 32px;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    margin: 0 auto;
    padding: 13px 51px;
    position: relative;
    text-transform: capitalize;
}
/* Баннер */
.banner {
    width: 50%;
    display: flex;
    flex-direction: column;
    background-image: url('/invite-arkada-banner-bg.ndsE8kI8.png');
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 22px;
 
    
}
@media screen and (max-width:800px) {
    .banner {
        display: none;
      } 
}

.banner-section {
  
    border-radius:  22px ;
    flex: 1;
    color: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    @media screen and (max-width:800px) {
        width: 100%;
         flex-direction: row;
         justify-content: space-between;
         gap: 10px;
      
     }
}
.banner-section p{
    max-width: 50%;
    align-items: center;
    color: #fff;
    display: flex;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    height: 30%;
    justify-content: center;
    line-height: 24px;
    text-align: center;
    text-transform: uppercase;
    @media screen and (max-width:800px) {
        margin-top: 50px;
        font-size: 10px;
    }
}

.form-container {
    width: 45%;
    
    box-sizing: border-box;
   
}
@media screen and (max-width:800px) {
    .form-container{
    width: 100%;
    max-width: 400px;}
  
 }
.logo {
    display: block;
    padding-bottom: 10px;
    max-width: 100px;
}
.form-title{
    padding-bottom: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 0;
    text-align: left;
    text-transform: capitalize;
}
/* Стили для полей формы */
.form-group {
    margin-bottom: 15px;
}

form input[type="email"],
form input[type="password"],
form #phone {
     -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-clip: padding-box;
    width: 100%;
    background-color: #242d48;
    border: 2px solid #242d48;
    color: #fff;
    border-radius: 8px;
    font-family:'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    height: 48px;
    line-height: 1;
    min-height: 40px;
    padding: 10px 37px 10px 16px;
    box-sizing: border-box;
  
}

form input[type="email"]:focus,
form input[type="password"]:focus,
form #phone:focus {
    outline: none;
    border-color: #00aaff;
}

/* Ошибки валидации */
.error-message {
    color: red;
    font-size: 10px;
    display: none;
    margin-top: 5px;
}

form input[type="email"].valid, form input[type="password"].valid, form #phone.valid  {
    border: 2px solid green;
  }
  
  form input[type="email"].invalid, form input[type="password"].invalid, form #phone.invalid {
    border: 2px solid red;
  }

/* .checkbox-group {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    gap: 20px;
} */
.custom-checkbox {
    position: relative; /* Для контроля текста и чекбокса */
  display: inline-block;
  padding-left: 34px; /* Оставляем место для чекбокса */
    font-size: 14px;
    line-height: 1.5;
  }
  
 .custom-checkbox input[type="checkbox"] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 0;
  height: 0;
}
  
.custom-checkbox .checkbox-mark {
    position: absolute;
    left: 0;
    top: 10px;
    width: 16px;
    height: 16px;
    border: 1px solid #ccc;
    border-radius: 2px;
    background-color: #fff;
    cursor: pointer;
    vertical-align: middle;
  }
  
  .custom-checkbox input[type="checkbox"]:checked + .checkbox-mark::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 6px;
    height: 10px;
    border: solid #fff; /* Цвет галочки */
    
    border-width: 0 2px 2px 0;
    transform: rotate(45deg); /* Создаем форму галочки */
  }
  .custom-checkbox input[type="checkbox"]:checked + .checkbox-mark {
    border-color: #00b6ef; /* Голубая рамка */
    background-color: #00b6ef;
  }
  
.checkbox-text{
    color: #ccc;
    font-size: 12px;
    font-family: 'Inter', sans-serif;
}
.checkbox-group a{
    color: rgb(99, 134, 223);
     text-decoration: underline;
}


button[type="submit"] {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background-color: #f2ecec21;
    border-radius: 8px;
    border: none;
    color: #8b8a8a;
    flex: 0 0 auto;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    height: -moz-fit-content;
    height: fit-content;
    margin: 24px 0 20px;
    min-height: 52px;
    padding: 10px;
    text-transform: uppercase;
    transition: all .3s linear;
    width: 100%;
    cursor: pointer;
    
}
/* 
button[type="submit"]:hover {
    background-color: #0056b3;
} */


.login-text {
    text-align: center;
    color: #fff;
    font-size: 12px;
    margin-bottom: 4px;
}
.block-login{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}
 #loginBtn {
    background: #ffffff21;
    border-radius: 32px;
    color: #fff;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    margin: 0 auto;
    padding: 13px 51px;
    position: relative;
    text-transform: capitalize;
    border: none;
}
#registrationBtn {background: #ffffff21;
    border-radius: 32px;
    font-size: 12px;
    font-style: normal;
    color: #fff;
    border: none;
    font-weight: 700;
    margin: 0 auto;
    padding: 13px 51px;
    position: relative;
    text-transform: capitalize;}
button[type="button"] {
    cursor: pointer;
}
.link-terms{
    cursor: pointer;
    text-decoration: underline;
    color: #75acff;
}
.container{

    padding: 15px;
    @media screen and (min-width:768px) {
        padding: 30px;
    }
    @media screen and (min-width:1280px) {
        padding: 30px 80px;
    }
    @media screen and (min-width:1440px) {
        padding: 30px  120px;
    }

}
.title{
    font-size: 24px;
    margin-bottom: 30px;
    @media screen and (min-width:1024px) {
        font-size: 30px;
    }
}
.container h3{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 10px;
}
.container p{
    font-size: 16px;
  
    margin-bottom: 10px;
    margin-top: 10px;
}
.container ul {
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
/* Success Modal Styles */
#successModal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
  }
  
  #successModal .success-content,  #successModal2 .success-content  {
    background-color: #060725;
   
    
    border: 1px solid #00b6ef;
    margin: 15% auto;
    padding: 20px;
   width: 300px;
    max-width: 400px;
    text-align: center;
    border-radius: 22px;
    @media screen and (min-width:768px) {
        max-width: 400px;
    }
  }
  .success-title2{
    color: red;
  }