/* Formulaire de connexion */

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--sabi-text);
    font-weight: 500;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 0px solid;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: var(--sabi-dark-gray);
    color: var(--sabi-text);
}

.form-group input:focus {
    outline: none;
    border-color: var(--sabi-primary);
    background: var(--sabi-gray);
    box-shadow: 0 0 0 3px rgba(212, 145, 84, 0.2);
}

.form-group input::placeholder {
    color: var(--sabi-text-secondary);
}

/* Bouton de connexion */
.login-btn {
    width: 100%;
    padding: 14px;
    background: var(--sabi-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.login-btn:hover {
    background: #B87A3F; /* Version plus foncée de l'orange Volcam pour le hover */
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 145, 84, 0.3);
}

.login-btn:active {
    transform: translateY(0);
}

.login-btn:disabled {
    background: var(--sabi-gray);
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Section de basculement connexion/inscription */
.auth-switch {
    text-align: center;
    margin-top: 20px;
    color: var(--sabi-text-secondary);
    font-size: 14px;
}

/* Lien mot de passe oublié */
.forgot-password-link {
    text-align: right;
    margin-top: -10px;
    margin-bottom: 15px;
}
