.login-form {
    width: 340px;
    margin: 50px auto;
}

.login-form form {
    margin-bottom: 15px;
    background: #f7f7f7;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    padding: 30px;
}

.login-form h2 {
    margin: 0 0 15px;
}

.form-control, .btn {
    min-height: 38px;
    border-radius: 8px;
}

.btn {        
    font-size: 15px;
    font-weight: bold;
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 5px;
    text-align: center;
}


.title {
    animation: clignote 1s ease-in-out infinite;
}

@keyframes clignote {
    0% {
        opacity: 2;
    }
    30% {
        opacity: 0.3;
    }
    200% {
        opacity: 2;
    }
}

.title1 {
    font-size: 40px;
    color: #000;
    position: relative;
    animation: rotate 4s linear forwards;
    transform-origin: center;
    display: inline-block;
}

@keyframes rotate {
    from {transform: rotateY(0deg);}
    to {transform: rotateY(360deg);}
    50% {transform: rotateY(180deg);}
    100% {transform: rotateY(360deg);}
}

.btn-animated {
    animation-duration: 2s;
    animation-name: pulse;
    animation-iteration-count: infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}

.animation-container {
    position: relative;
    text-align: center;
    margin-top: 10px;
}

.code-location, .input-location {
    display: inline-block;
    font-weight: bold;
    font-size: 16px;
    color: #ffffff; /* Couleur du texte (rouge dans cet exemple) */
    margin: 0 10px;
}




/* Autres styles ici */

.footer {
    width: 100%;
    position: relative;
    bottom: 0;
    left: 0;
    padding: 20px; /* Ajoutez un espacement interne pour améliorer l'apparence */
    box-sizing: border-box; /* Inclut le padding dans la largeur totale */
}

/* Ajoutez ou modifiez cette règle pour les colonnes du footer */
.footer .container {
    max-width: 100%; /* Utilisez 100% de la largeur disponible */
}

/* Styles pour personnaliser les couleurs des icônes */
.facebook-blue {
    color: blue; /* ou toute autre couleur de votre choix */
}

.youtube-red {
    color: red; /* ou toute autre couleur de votre choix */
}

.whatsapp-green {
    color: green; /* ou toute autre couleur de votre choix */
}
