

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 19%, rgba(254, 243, 230, 1) 46%, rgba(245, 170, 78, 1) 100%) fixed;
}


/* Conteneur principal */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Style de la carte */
.register-card {
    width: 100%;
    max-width: 600px; /* Plus large pour une meilleure apparence */
    padding: 20px;
    border-radius: 15px;
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Titre */
.register-title {
    font-family: 'Arial', sans-serif;
    color: #0056b3;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Champs du formulaire */
.form-control, .form-select {
    border-radius: 8px;
    border: 1px solid #ced4da;
    font-size: 14px;
    height: 45px; /* Réduction de la hauteur */
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

/* Boutons */
.btn-primary {
    background-color: #0056b3;
    border-color: #0056b3;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
}

.btn-primary:hover {
    background-color: #004494;
    border-color: #004494;
}

/* Liens */
.link-primary {
    color: #0056b3;
    text-decoration: none;
}

.link-primary:hover {
    color: #004494;
    text-decoration: underline;
}

/* Alertes */
.alert {
    border-radius: 8px;
    margin-top: 10px;
}
