* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

.container {
    text-align: center;
    padding: 20px;
}

.main-image {
    width: 75%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.input, .select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    width: 300px; /* Ajustez la largeur selon vos besoins */
    transition: border-color 0.3s;
}

.input:focus, .select:focus {
    border-color: #007BFF;
    outline: none;
}

.button {
    padding: 10px 20px;
    background-color: #00458c;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #0056b3;
}

a {
    color: #007BFF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.lib img{
    width: 20%;
    height: auto;
}

.contenu h3{
    margin: 15px;
}

/* Media Queries */
@media (max-width: 768px) { /* Écrans moyens (tablettes) */
    .main-image {
        width: 90%; /* Ajustez la largeur pour les tablettes */
    }

    .input, .select {
        width: 80%; /* Ajustez la largeur des inputs et selects */
    }

    .lib img {
        width: 40%; /* Ajustez la taille du logo */
    }

    .button {
        width: 80%; /* Ajustez la largeur du bouton */
    }
}

@media (max-width: 480px) { /* Petits écrans (mobiles) */
    .main-image {
        width: 100%; /* Ajustez la largeur pour les mobiles */
    }

    .input, .select {
        width: 90%; /* Ajustez la largeur des inputs et selects */
    }

    .lib img {
        width: 60%; /* Ajustez la taille du logo */
    }

    .button {
        width: 90%; /* Ajustez la largeur du bouton */
    }

    .contenu h3 {
        font-size: 18px; /* Ajustez la taille de la police pour les petits écrans */
    }
}