/* style.css */
body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4; /* Couleur de fond légère pour réduire la fatigue oculaire */
}

.full-center {
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

form {
    width: 90%; /* Largeur du formulaire pour mieux s'adapter aux petits écrans */
    max-width: 400px; /* Largeur maximale pour les écrans plus grands */
}

input[type="password"], input[type="submit"] {
    width: 100%;
    padding: 12px; /* Padding plus grand pour faciliter l'interaction */
    margin-top: 8px; /* Espacement pour ne pas que les éléments se touchent */
    border: 1px solid #ccc;
    box-sizing: border-box; /* Pour éviter que le padding ne déborde */
}

input[type="submit"] {
    background-color: #4CAF50; /* Couleur verte pour le bouton soumettre */
    color: white;
    border: none; /* Pas de bordure pour le bouton */
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #45a049; /* Assombrir légèrement au survol */
}

iframe {
    width: 100%;
    height: 100vh;
}

@media (max-width: 600px) {
    html {
        font-size: 16px; /* Ajuster la taille de la police pour les petits écrans */
    }
}
