/* Container instellingen */
.forgot-password-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 100px);
    background-color: #f4f7f6;
    padding: 20px;
}

/* De kaart */
.forgot-password-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 450px; /* Desktop breedte */
}

.forgot-title {
    color: #2e7d32; /* Matcht jouw thema */
    font-size: 1.8rem;
    margin-bottom: 10px;
    text-align: center;
}

.forgot-text {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 25px;
    text-align: center;
    line-height: 1.5;
}

.forgot-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Mobiele optimalisatie */
@media (max-width: 600px) {
    .forgot-password-container {
        padding: 0;
        background-color: #ffffff; /* Geen grijze randen op mobiel */
        align-items: flex-start; /* Start bovenaan op kleine schermen */
    }

    .forgot-password-card {
        box-shadow: none;
        padding: 30px 20px;
        border-radius: 0;
    }

    .forgot-title {
        font-size: 1.5rem;
        margin-top: 20px;
    }
}