/* Styles généraux */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: url('../img/back5.png') no-repeat center center fixed;
    background-size: cover; /* Couleur de fond claire */
}

.container {
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem;
    border-radius: 10px;
    max-width: 800px;
    width: 90%;
    min-height: 400px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Titres et textes */
.container h2 {
    color: white;
}

.container label {
    color: white;
}

/* Champs de formulaire */
.form-control {
    border-radius: 5px;
    padding: 10px;
    font-size: 1rem;
}

/* Boutons */
.btn {
    font-size: 1.2rem;
    padding: 12px;
    border-radius: 5px;
    transition: transform 0.2s ease-in-out;
    background-color: #fae800; /* Nouvelle couleur de fond */
    border-color: black;
    color: black;
    width: 100%;
}

.btn:hover {
    transform: scale(1.05);
    background-color: #fae800;
    border-color: black;
    color: black;
}

/* Ajustements pour les écrans de petite taille */
@media (max-width: 768px) {
    .container {
        width: 90%;
        padding: 1.5rem;
    }

    .btn {
        font-size: 1rem;
        padding: 10px;
    }
}

/* Ajustements pour les très petits écrans */
@media (max-width: 480px) {
    .container {
        width: 95%;
        padding: 1rem;
    }

    .btn {
        font-size: 0.9rem;
        padding: 8px;
    }
}
