body {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    min-height: 100vh;
    font-family: 'Segoe UI', sans-serif;
}

.auth-card {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,.25);
}

.auth-left {
    background: linear-gradient(135deg,#1e88e5,#1565c0);
    color: #fff;
    padding: 50px 35px;
}

.auth-left h2 {
    font-weight: 700;
}

.auth-left ul li {
    margin-bottom: 12px;
    font-size: 15px;
}

.auth-right {
    padding: 40px;
    background: #fff;
}

.form-control {
    border-radius: 8px;
    padding: 12px;
}

.btn-primary {
    border-radius: 8px;
    font-weight: 600;
}

.small-link {
    font-size: 14px;
}


.error-msg {
  color: #dc3545;
  font-size: 13px;
  margin-top: 4px;
  display: block;
}

.is-invalid {
  border: 2px solid #dc3545 !important;
  background: #fff5f5;
}


.captcha-box{
  min-width:140px;
  text-align:center;
  font-size:22px;
  font-weight:700;
  letter-spacing:3px;
  padding:6px 14px;
  border:2px solid #f5b9f9;
  border-radius:8px;
  background:linear-gradient(135deg,#f8f9fa,#e9ecef);
  color:#000;
  user-select:none;
  font-family: 'Courier New', monospace;
}


.form-select {
  border-radius: 10px;
  padding: 12px 14px;
  border: 1.5px solid #e3e6f0;
  font-size: 14px;
  transition: 0.2s ease;
}

.form-select:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.15rem rgba(13,110,253,.15);
}


/* OTP POPUP MODAL */

.otp-modal {
  border-radius: 18px;
  padding: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  background: linear-gradient(135deg,#ffffff,#f7f9ff);
}

.otp-icon {
  font-size: 48px;
}

.otp-input {
  text-align: center;
  font-size: 22px;
  letter-spacing: 6px;
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 12px;
}

.otp-input:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.2rem rgba(13,110,253,.25);
}

.error-msg{ color:red;}