/* ========================================
   styles.css for Forgot Password Page
   ======================================== */

/* --- Base Reset --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #0f0f0f;
  color: #ffffff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 1rem;
}

/* --- Container --- */
.container {
  background-color: #1a1a1a;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 255, 153, 0.2);
  width: 100%;
  max-width: 400px;
  text-align: center;
}

/* --- Heading --- */
.container h2 {
  color: #00ff99;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

/* --- Instruction Text --- */
.container p {
  margin-bottom: 1.5rem;
  color: #cccccc;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* --- Input Field --- */
#reset-email {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: none;
  border-radius: 6px;
  background-color: #0f0f0f;
  color: #ffffff;
  font-size: 1rem;
  outline: none;
}

#reset-email::placeholder {
  color: #888888;
}

/* --- Button --- */
#reset-btn {
  width: 100%;
  padding: 0.75rem;
  margin-top: 0.5rem;
  border: none;
  border-radius: 6px;
  background-color: #00ff99;
  color: #000000;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#reset-btn:hover {
  background-color: #00cc77;
}

/* --- Message Text --- */
#reset-message {
  margin-top: 1rem;
  font-size: 0.9rem;
  min-height: 1.2rem;
}

/* --- Back to Login Link --- */
a.link {
  display: inline-block;
  margin-top: 1.5rem;
  color: #00ff99;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

a.link:hover {
  color: #00cc77;
}

/* --- Responsive Adjustments --- */
@media (max-width: 480px) {
  .container {
    padding: 1.5rem;
  }

  .container h2 {
    font-size: 1.25rem;
  }

  #reset-btn {
    font-size: 0.95rem;
  }
}