.page-sidebar .container-fluid{
    padding-right: 0;
    padding-left: 0;
}
.signup-container {
  display: flex;
  height: 100vh;
  width: 100%;
}
.left-section {
  flex: 0 0 42%; 
  max-width: 42%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}
.left-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../../img/AI/left-section-bg.png') center/cover;
}
.brand-logo {
  width: 100%;
  height: 100%;
  cursor: pointer;
  display: block;
}
.ai-text {
  background: linear-gradient(45deg, #00d4ff, #ff00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}
.right-section {
  flex: 0 0 58%; 
  max-width: 58%;
  background: #1a1a1a;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 40px 7rem;
}
.form-container {
  width: 100%;
}
.title {
  color: white;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 12px;
  text-align: right;
}
.subtitle {
  color: rgba(255, 255, 255, 0.85);
  text-align: right;
  margin-bottom: 40px;
  font-size: 14px;
}
.login-link {
  color: #9AF6FF !important;
  text-decoration: none;
  margin-right: 0.95rem;
  cursor: pointer;
}
.login-link:hover {
  text-decoration: underline;
  color: #9AF6FF !important;
}
.social-buttons {
  display: flex;
  gap: 3.5rem;
  margin-bottom: 32px;
}
.social-btn {
  flex: 1;
  background: #2F3738;
  border: 0;
  color: white;
  padding: 12px 16px;
  border-radius: 1.45rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}
.social-btn span{
  background-color: #D9D9D9;
  border-radius: 50%;
  padding: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 6px;
}
.social-btn:hover {
  background: #333;
}
.divider {
  text-align: center;
  margin: 32px 0;
  position: relative;
  color: #455152;
  font-size: 12px;
}
.divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #455152;
}
.divider span {
  background: #1a1a1a;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  color: white;
  margin-bottom: 8px;
  font-size: 0.95em;
  font-weight: 500;
  text-align: right;
}
.form-group input {
  width: 100%;
  background: #2F3738;
  border: 0;
  color: white;
  padding: 12px 16px;
  border-radius: 1.45rem;
  font-size: 14px;
  transition: all 0.3s ease;
}
.form-group .multi-input {
    display: flex;
    gap: 5px;
    width: 100%;;
}
.errorMessage {
    color: red;
    display: block;
    font-size: 0.7rem;
    text-align: right;
}
.form-group input#mobile_prefix {
    width: 80px !important;
}
.form-group input#mobile {
    flex: 1;
}
.form-group input:focus {
  outline: none;
  border-color: #9AF6FF;
  box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.1);
}
.form-group input::placeholder {
  color: #666;
}
.password-hint {
  color: #455152;
  font-size: 12px;
  margin-top: 6px;
  padding-right: 1.8rem;
  margin-bottom: 0;
  text-align: right;
}
.password-wrapper {
  position: relative;
  width: 100%;
}
.password-wrapper input {
  width: 100%;
  padding-left: 40px;
  box-sizing: border-box;
}
.toggle-password {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.toggle-password img {
  width: 20px;
  height: 14px;
}
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 32px;
}
.checkbox-group label {
  display: block;         
  gap: 6px;                    
  color: #455152;
  font-size: 12px;
  line-height: 1.4;
  cursor: pointer;
  margin-bottom: 0;
  margin-top: -3px;
}
.checkbox-group label a{           
  color: #455152 !important;
  border-bottom: 1px solid #455152 !important;
}
.checkbox-group input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 13px;
  height: 13px;
  border: 2px solid #2F3738;
  border-radius: 1px;
  background-color: #2F3738;
  cursor: pointer;
  position: relative;
}
.checkbox-group input[type="checkbox"]:checked {
  background-color: #00d4ff; 
  border-color: #00d4ff;
}
.checkbox-group input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  right: 3px;
  top: 0px;
  width: 4px;
  height: 7px;
  border: solid #2F3738;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.signup-btn {
  width: 130px;
  background: #9AF6FF;
  border: none;
  color: #455152;
  padding: 11px 14px;
  border-radius: 12px;
  font-size: 0.95em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 15px;
  float: right;
}
.signup-btn:hover {
  background: #9AF6FF;
  transform: translateY(-1px);
}
.signup-btn:active {
  transform: translateY(0);
}
.title.mb-3{
  margin-bottom: 2.75rem !important;
}
.close-btn {
  position: absolute;
  top: 30px;
  left: 30px;
  background: none;
  border: none;
  color: #9AF6FF;
  font-size: 1.7rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.close-btn:hover {
  background: #333;
  color: white;
}
.signup-page .subtitle {
    margin-bottom: 25px;
}
.signup-page .form-group {
    margin-bottom: 15px;
}
.signup-page .divider {
    margin: 20px 0;
}
.signup-page .signup-btn {
    margin-top: 0;
}
.signup-page .checkbox-group {
    margin-bottom: 22px;
    padding-right: 10px;
}
.signup-page .toggle-password {
    top: 44%;
}
.password-group.form-group label{
    display: flex;
    color: white;
    margin-bottom: 8px;
    font-size: 0.95em;
    font-weight: 500;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}
/* .signup-page{
    min-height: 800px;
} */
@media (max-width: 767px) {
    .page-section-ptb {
        padding: 0;
    }
}
@media (max-width: 768px) {
  .signup-container {
    flex-direction: column;
  }
  .left-section {
    display: none;
  }
  .right-section {
    flex: 1;
    padding: 55px 3rem 30px 3rem;
    max-width: inherit;
  }
  .social-buttons {
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
  }
  .form-group label {
    font-size: 0.9em;
  }
  .signup-btn {
    margin: 3rem auto 0 auto;
    display: block;
  }
  .social-btn {
    padding: 12px 10px 12px 2rem;
    justify-content: flex-start;
  }
  .close-btn {
    top: 5px;
    right: 8px;
    color: #777;
  }
  .checkbox-group input[type="checkbox"] {
    height: 12px;
  }
  .checkbox-group input[type="checkbox"]:checked::after {
    right: 2px;
  }
  .signup-page .checkbox-group {
    padding-right: 5px;
  }
  .signup-page .subtitle {
    margin-bottom: 30px;
  }
  .title {
    margin-bottom: 15px;
  }
  .signup-page .password-hint {
    margin-top: 10px;
    padding-left: 1.6rem;
    margin-bottom: 30px;
  }
  .signup-page .signup-btn {
    margin-top: 3rem;
  }
  .signup-btn {
        float: none;
    }
}