/* Styles pour le champ de code de connexion */
#modal_login_code {
    text-align: center;
    font-size: 1.2em;
    font-weight: bold;
    letter-spacing: 3px;
    text-transform: uppercase;
}

#modal_login_code:focus {
    letter-spacing: 3px;
}

/* Message d'aide pour les codes */
.form-help-text {
    color: var(--subtle-text-color);
    font-size: 0.9em;
    line-height: 1.4;
}

/* Styles pour les liens dans les modals */
.modal-footer-link a {
    text-decoration: none;
    color: var(--link-color);
}

.modal-footer-link a:hover {
    text-decoration: underline;
}

/* Styles pour les étapes de connexion */
.login-step-info {
    background: #36373c;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-color);
}

.login-step-info p { margin-bottom: 0; }

.current-email {
    background: #4b4c53;
    padding: 8px 12px;
    border-radius: 4px;
    margin-top: 10px;
    text-align: center;
}

/* Actions du modal */
.modal-actions {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.modal-actions a {
    font-size: 14px;
    margin: 0 5px;
}

/* Boutons améliorés */
.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 16px;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

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