/* app/auth/static/css/password_reset.css */

.reset-password-request-page, .reset-password-page {
    max-width: 400px;
    margin: 180px auto; /* Center the form and add top margin */
    padding:40px;
    background-color: #e5eee9; /* Background color matching your form design */
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Slight shadow for depth */
}

.reset-password-request-page h1, .reset-password-page h1 {
    color: #218838; /* Heading color */
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    color: #218838; /* Label color */
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    text-align: left;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff; /* Input background color */
    color: #162821; /* Input text color */
    box-sizing: border-box; /* Ensures padding doesn't affect total width */
}

.btn-primary {
    width: 100%;
    padding: 10px;
    background-color: #28a745; /* Primary button color */
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    background-color: #218838; /* Darker shade on hover */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .reset-password-request-page, .reset-password-page {
        padding: 15px;
    }
}
