/* Container principal de la page */
.privacy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Arial', sans-serif;
}

/* Titre principal */
.main-title {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

/* Titre des sections */
.section-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #007bff;
    margin-top: 30px;
    margin-bottom: 10px;
    border-bottom: 2px solid #007bff;
    padding-bottom: 5px;
}

/* Paragraphes */
.privacy-container p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Listes */
.privacy-container ul {
    list-style-type: disc;
    margin-left: 20px;
    color: #555;
}

/* Style des liens */
.privacy-container a {
    color: #007bff;
    text-decoration: none;
}

.privacy-container a:hover {
    text-decoration: underline;
}

/* Espacement et style pour les petites informations comme la date de mise à jour */
.update-info {
    font-style: italic;
    color: #777;
}

/* Bouton Retour à la Connexion */
.privacy-container .btn-primary {
    display: block;
    width: fit-content;
    margin: 30px auto 0;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 6px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.privacy-container .btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.privacy-container .btn-primary:active {
    background-color: #004095;
    transform: translateY(0);
}

/* Style des liens sous le formulaire */
.legal-links {
    margin: 20px;
    text-align: center;
}

.legal-links a {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
    margin: 0 10px;
    transition: color 0.3s ease, transform 0.2s ease;
}

.legal-links a:hover {
    color: #0056b3;
    text-decoration: underline;
    transform: translateY(-2px);
}
