/* login.css — Styles scoped for login.html */

/* Container for the login form */
.form-container {
  max-width: 400px;
  margin: 3rem auto;
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Heading inside the form */
.form-container h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #052434;
}

/* Each input group */
.form-group {
  margin-bottom: 1.5rem;
}

/* Labels for email and password */
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #0B0A4E;
}

/* Text inputs */
.form-group input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  color: #0B0A4E;
  transition: border 0.2s ease;
}

/* Input focus state */
.form-group input:focus {
  border-color: #56FFBD;
  box-shadow: 0 0 0 2px rgba(86, 255, 189, 0.3);
}

/* Submit button */
.form-btn {
  width: 100%;
  padding: 0.75rem;
  background: linear-gradient(135deg, #56FFBD, #0B0A4E);
  border: none;
  border-radius: 8px;
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  text-transform: uppercase;
  transition: transform 0.2s ease;
}

/* Button hover effect */
.form-btn:hover {
  transform: translateY(-2px);
}

/* Paragraphs and links under the form */
.form-container p {
  text-align: center;
  margin-top: 1rem;
}

.form-container a {
  color: #56B979;
  text-decoration: none;
}

.form-container a:hover {
  text-decoration: underline;
}
