/* Reset and base styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Form container */
.container {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
  text-align: center;
}

/* Header and message */
.container h2 {
  margin-bottom: 1rem;
  color: #333;
}

.container p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1.5rem;
}

/* Input fields */
input[type="email"] {
  width: 100%;
  padding: 12px 10px;
  margin-bottom: 1.2rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  transition: border 0.3s ease;
}

input[type="email"]:focus {
  border-color: #007bff;
  outline: none;
}

/* Submit button */
button[type="submit"] {
  width: 100%;
  padding: 12px;
  background-color: #007bff;
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

button[type="submit"]:hover {
  background-color: #0056b3;
}

html, body {
  height: 100%;
}

/* Centering the form on the page */
.page-center {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 1rem;
  background: #f5f5f5;
}

/* Flash message styling */
.flashes {
  list-style: none;
  margin-bottom: 1rem;
  padding-left: 0;
}

.flashes li {
  background: #ffeeba;
  color: #856404;
  padding: 10px;
  border: 1px solid #ffeeba;
  border-radius: 6px;
  margin-bottom: 10px;
  font-size: 0.9rem;
}


label {
  display: block;
  text-align: center;
  font-weight: bold;
  color: #000;
  margin-bottom: 0.5rem;
}
