/* Center the form on the page */
body {
    background-color: #86b1e9;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

/* Paragraph styling */
p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-align: center;
}

/* Form container */
form {
    background-color: #142f54;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Input field */
input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
    background-color: #1f3b6e;
    color: #ffffff;
    font-size: 1rem;
}

/* Submit button */
button#reset-link {
    width: 20%;
    padding: 12px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button#reset-link:hover {
    background-color: #0056b3;
}

/* Spinner container styling */
.spinner-container {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

/* Spinner icon styling */
.loading-spinner {
  font-size: 24px;
  color: #FFFFFF; /* Optional: match your theme */
}