/* ============================================================
 * Register Page — Styles spécifiques à la page d'inscription
 * ============================================================ */

.register-card {
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.register-input {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
}

.register-input:focus {
    border-color: #045d98;
    box-shadow: 0 0 0 3px rgba(4, 93, 152, 0.1);
    outline: none;
}

.register-btn {
    background: linear-gradient(135deg, #045d98 0%, #08a3ff 100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.register-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(4, 93, 152, 0.35);
}

/* Indicateur force mot de passe */
.password-strength-bar {
    height: 4px;
    border-radius: 2px;
    transition: width 0.3s ease, background-color 0.3s ease;
}
