.btn_google_connection {
    width: 60%;
    padding-top: 10%;
    padding-bottom: 20%;
    padding-right: 20%;
    padding-left: 20%;
}

.btn_google_content {
    width: 30%;
    height: 35%;
    border-radius: 5px;
    border: 1px solid rgb(185, 181, 181);
    padding-right: 5%;
    padding-left: 5%;
    margin: 0;
}

/* Styles pour le bouton "Se connecter à Google" */
.btn-google {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4285F4; /* Couleur de Google */
    color: #ffffff; /* Texte en blanc */
    text-decoration: none;
    border-radius: 5px; /* Coins arrondis */
    font-weight: bold;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%);
}

/* Styles au survol du bouton */
.btn-google:hover {
    background-color: #357AE8; /* Couleur de Google au survol */
}

.logo {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translate(-50%);
}

/* Media Query pour les écrans de petite taille (par exemple, smartphones) */
@media (max-width: 768px) {
    .btn-google {
        display: block; /* Le bouton prend toute la largeur */
        width: 80%; /* Ajuster la largeur pour s'adapter à l'écran */
        text-align: center;
        margin: 10px auto; /* Centrer le bouton avec une marge au-dessus et en dessous */
    }

    .btn_google_connection {
        width: 80%; /* Ajuster la largeur pour s'adapter à l'écran */
        padding-top: 15%; /* Ajuster la marge supérieure */
        padding-bottom: 15%; /* Ajuster la marge inférieure */
        padding-right: 10%; /* Ajuster la marge droite */
        padding-left: 10%; /* Ajuster la marge gauche */
    }
}

/* Ajout de styles pour le lien */
.btn-google-link {
    display: block;
    text-align: center;
    margin-top: 10px; /* Marge au-dessus du lien */
}

.btn-google-link a {
    text-decoration: none;
    color: #4285F4; /* Couleur de Google */
    font-weight: bold;
}

.btn-google-link a:hover {
    text-decoration: underline;
}
