﻿
.forgot-password-section {
  max-width: 500px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(60,80,120,0.13);
  padding: 10px 30px 20px 30px;
  margin: 0px auto 0px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

  .forgot-password-section h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #3a8dde;
    margin-bottom: 8px;
  }

  .forgot-password-section p {
    font-size: 1.08rem;
    color: #555;
    margin-bottom: 22px;
    text-align: center;
  }


.forgot-password-form label {
  font-weight: 600;
  color: #3a8dde;
  font-size: 1.05rem;
  margin-bottom: 2px;
}

.forgot-password-form input {
  padding: 8px;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  font-size: 1rem;
  font-family: Calibri, Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif;
  background: #f6fbff;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 4px rgba(60, 80, 120, 0.04);
}

  .forgot-password-form input:focus {
    outline: none;
    border-color: #3a8dde;
    background: #eaf4ff;
    box-shadow: 0 2px 8px rgba(60, 80, 120, 0.10);
  }


.forgot-password-form .btn[type="submit"],
.contact-form .btn[type="submit"] {
  background: linear-gradient(90deg, #3a8dde 0%, #6f4ad7 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px 0;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
  box-shadow: 0 2px 12px rgba(60, 80, 120, 0.10);
  transition: background 0.2s, box-shadow 0.2s;
}

  .forgot-password-form .btn[type="submit"]:hover,
  .contact-form .btn[type="submit"]:hover {
    background: linear-gradient(90deg, #2c6bb2 0%, #6f4ad7 100%);
    box-shadow: 0 4px 24px rgba(60, 80, 120, 0.18);
  }


.forgot-password-form {
  width: 100%;
  font-size: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-size: 1rem;
}

.btn:disabled,
.btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}


.otp-btn[type="button"] {
  background: linear-gradient(90deg, #3a8dde 0%, #6f4ad7 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px 0;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(60, 80, 120, 0.10);
  transition: background 0.2s, box-shadow 0.2s;
  width: 100px;
  align-self: flex-end;
}

  .otp-btn[type="button"]:hover {
    background: linear-gradient(90deg, #2c6bb2 0%, #6f4ad7 100%);
    box-shadow: 0 4px 24px rgba(60, 80, 120, 0.18);
  }

.otp-btn:disabled,
.otp-btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-group.otp {
  flex-direction: row !important;
  justify-content: space-between;
}

.form-group.password {
  position: relative;
}

#togglePassword {
  position: absolute;
  right: 12px;
  top: 35px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  color: #3a8dde;
}
