/* ---------- VERIFY FORM ---------- */
.login-container {
  background: rgba(255, 255, 255, 0.95);
  width: 100%;
  max-width: 400px;
  margin: 60px auto;
  padding: 30px 35px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.login-container h2 {
  text-align: center;
  margin-bottom: 10px;
  color: #0f3d91;
}

.login-container p {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
  font-size: 0.95rem;
}

.field {
  margin-bottom: 15px;
  position: relative;
}

.field input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #aaa;
  border-radius: 6px;
  outline: none;
  font-size: 15px;
}

/* NEW: OTP Box Styles */
.otp-label {
  display: block;
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 8px;
  text-align: left;
}

.otp-container {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 20px;
}

.otp-input {
  width: 45px;
  height: 45px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  border: 1px solid #aaa;
  border-radius: 6px;
  outline: none;
  /* Remove arrows from number input */
  -moz-appearance: textfield;
  appearance: textfield;
}

.otp-input::-webkit-outer-spin-button,
.otp-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.otp-input:focus {
  border-color: #0f3d91;
  box-shadow: 0 0 5px rgba(15, 61, 145, 0.3);
}
/* End of OTP Styles */

.btn-container {
  margin-bottom: 15px;
}

button {
  width: 100%;
  padding: 12px;
  background: #0f3d91;
  color: white;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
  /* For spinner alignment */
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

button:hover {
  background: #0b2b6f;
}

/* NEW: Spinner Style */
.spinner-icon {
  font-size: 1.1rem;
}

/* NEW: Disabled Button State */
button:disabled {
  background: #aaa;
  cursor: not-allowed;
}

#resend-btn:disabled {
  color: #888;
  background: none;
  text-decoration: none;
}

/* Styles for resend button */
.resend-container p {
  font-size: 14px;
  text-align: center;
}

#resend-btn {
  background: none;
  border: none;
  color: #0f3d91;
  font-weight: bold;
  cursor: pointer;
  padding: 0;
  font-size: 14px;
}

#resend-btn:hover {
  text-decoration: underline;
}

.msg {
  margin-top: 15px;
  text-align: center;
  font-weight: bold;
}
.msg i {
  margin-right: 6px; /* Icon aur text ke beech space */
}

/* Responsive */
@media (max-width: 500px) {
  .login-container {
    margin: 40px 20px;
    padding: 25px 20px;
  }
  .otp-input {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
}