/*
  Styles de la page d'inscription : centrage du formulaire et cohérence visuelle avec la page de connexion.
*/

.register-page {
    background-color: #0f0f1a;
    min-height: calc(100vh - 260px);
    padding-top: 3rem;
    padding-bottom: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.6s ease forwards;
}

.card {
    width: 100%;
    max-width: 480px;
    background-color: #16213e;
    border: 1px solid #2a2a4a;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(124, 92, 191, 0.2);
    padding: 10px;
}

.card h2 {
    color: #e0e0e0;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.register-page a {
    color: #9b7de0;
    font-weight: 500;
    transition: color 0.2s ease;
}

.register-page a:hover {
    color: #fff;
    text-decoration: underline;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.register-page .card h2 { margin-bottom: 1rem; font-size: 2rem; }