/* /wachtwoord-resetten/css/style.css */

/* Zorgt voor de achtergrondkleur en centrering van de content box */
.password-reset-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 120px);
    /* Ruimte voor header en footer */
    padding: 40px 20px;
    margin-top: 60px;
    /* Ruimte voor de vaste header */
    background-color: #f8f9fa;
    /* Lichte achtergrondkleur */
    box-sizing: border-box;
}

/* De witte box waarin het formulier staat */
.reset-container {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 450px;
    text-align: center;
}

.reset-container h2 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 28px;
    color: #333;
}

.reset-container p {
    margin-bottom: 25px;
    color: #666;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: #c0392b;
    /* Thema kleur */
}

.form-control.is-invalid {
    border-color: #e74c3c;
}

.invalid-feedback {
    color: #e74c3c;
    font-size: 14px;
    display: block;
    margin-top: 5px;
}

/* Stijl voor de knop */
.form-group .btn,
.reset-container .btn {
    width: 100%;
    padding: 12px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    box-sizing: border-box;
    /* Stijlen die de knop de rode themakleur geven (zoals op de login pagina) */
    background-color: #c0392b;
    color: #ffffff;
    transition: background-color 0.3s ease;
}

.form-group .btn:hover,
.reset-container .btn:hover {
    background-color: #a93226;
    /* Donkerdere tint bij hover */
}

/* Stijl voor foutmeldingen (bijv. verlopen token) */
.alert.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    padding: .75rem 1.25rem;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: .25rem;
    text-align: left;
}