body {
  font-family: 'Century Gothic', sans-serif;
  background: linear-gradient(135deg, #f5f5f5 0%, #eaf6ef 100%);
  color: #000000;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* === Centered Content === */
.main-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* === Reset Box === */
.reset-box {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
  padding: 40px 50px;
  max-width: 420px;
  width: 100%;
  text-align: center;
}

.reset-box h2 {
  color: #008037;
  margin-bottom: 10px;
  font-size: 1.8rem;
}

.reset-box p {
  color: #000000;
  font-size: 1rem;
  margin-bottom: 25px;
}

.reset-box label {
  display: block;
  text-align: left;
  font-weight: bold;
  color: #000000;
  margin-bottom: 6px;
}

.reset-box input[type="email"] {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #008037;
  font-family: 'Century Gothic', sans-serif;
  font-size: 1rem;
  outline: none;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.reset-box input[type="email"]:focus {
  border-color: #004d25;
  box-shadow: 0 0 5px rgba(0, 128, 55, 0.4);
}

.reset-box button {
  width: 100%;
  background: #008037;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.reset-box button:hover {
  background: #006b2f;
  transform: translateY(-2px);
}

.back-link {
  display: inline-block;
  margin-top: 15px;
  text-decoration: none;
  color: #000000;
  font-weight: bold;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: #008037;
}

/* === Alerts from Django messages === */
.alert {
  margin-bottom: 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
}

/* === Footer Styling === */
footer {
  text-align: center;
  padding: 10px 0;
  font-size: 0.9rem;
  color: #000000;
  background-color: #ffffff;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.05);
}

/* === Responsive Design === */
@media (max-width: 768px) {
  .reset-box {
    padding: 35px 25px;
  }
  .reset-box h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .reset-box {
    width: 90%;
    padding: 25px 20px;
  }
  .reset-box h2 {
    font-size: 1.4rem;
  }
  .reset-box button {
    font-size: 0.95rem;
  }
}