/* local.css - Styles spécifiques pour la page de connexion locale */

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
}

.forgot-password {
    text-align: center;
    margin-bottom: 25px;
}

.register-option {
    text-align: center;
}

.register-option p {
    color: var(--muted-color);
    font-size: 14px;
    margin-bottom: 15px;
}

.register-btn {
    background: var(--success-color);
    width: auto;
    padding: 10px 20px;
}

.register-btn:hover {
    background: #1b5e20;
}