@charset "utf-8"; 
.login-modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 9999; display: flex; justify-content: center; align-items: center; overflow-y: auto; padding: 20px; }
.login-modal .login-box { background: #fff; padding: 30px; border-radius: 15px; max-width: 500px; width: 100%; position: relative; animation: fadeInUp 0.4s ease; max-height: 100vh; overflow-y: auto; box-shadow: 0 6px 20px rgba(0,0,0,0.1); text-align: center; }
.close-modal { position: absolute; top: 10px; right: 15px; font-size: 28px; cursor: pointer; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }

.forgot-box {
  max-width: 400px;
  margin: auto;
  padding: 25px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  text-align: center;
  animation: fadeIn 0.4s ease-in-out;
}

.forgot-box h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
}

.forgot-form .form-group {
  margin-bottom: 15px;
  text-align: left;
}

.forgot-form label {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
  display: block;
}

.forgot-form input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.forgot-form input:focus {
  border-color: #007bff;
  box-shadow: 0 0 6px rgba(0,123,255,0.3);
}

.forgot-box .btn-submit {
  width: 100%;
  margin-top: 10px;
}

.back-link {
  display: inline-block;
  margin-top: 15px;
  font-size: 14px;
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s;
}

.back-link:hover {
  color: #0056b3;
}


