body {
    font-family: 'Monserrat', sans-serif;
    background-color: #f2f2f2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Header & Footer */

.header, .footer {
	font-family: 'Monserrat', sans-serif;
    position: fixed;
    left: 0;
    right: 0;
    background-color: #211d52;
    color: white;
    padding: 10px 0;
	display: flex;
	padding-left:20px;
}

.header {
	    font-family: 'Monserrat', sans-serif;
    top: 0;
    text-align: center;
}

.footer {
	font-family: 'Monserrat', sans-serif;
    bottom: 0;
    text-align: center;
    justify-content: center; /* Centrer horizontalement le contenu */
}

.column{
	width:96%;
	margin:0 auto;
}

/* Box login */

.login-container {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 340px;
    text-align: center;
}

.logo {
    width: 100px;
    margin-bottom: 20px;
}



/* Button */

button {
    background-color: #211d52;
    color: white;
    border: none;
    padding: 10px;
    width: 60%;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #090fd1;
}

.forgot-password {
    margin-top: 10px;
}

a {
    color: #3498db;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}


/* Menu langue */
.language-menu {
    position: fixed;
    top: 25px;
    right: 80px;
    z-index: 99999;
}


#language-trigger {
    cursor: pointer;
    width: 30px; /* Adjust size as needed */
    height: 30px; /* Adjust size as needed */
}

.dropdown-content {
    display: none; /* Hide dropdown by default */
    position: absolute;
    top:40px;
    right:10px;
    background-color: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    width:150px;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

/* Show dropdown on hover */
.language-menu:hover .dropdown-content {
    display: block;
}


/* Menu Hamburger */

.button-menu{
    position: fixed;
    top: 23px;
    right: 20px;
}

.hamburger-content{
    text-align: left;
}

.hamburger-menu {
    position: fixed;
    left: -250px;
    top: 0;
    width: 250px;
    height: 100%;
    background-color: #4a0089;
    transition: 0.3s;
    z-index: 7000;
}

.hamburger-menu.active {
    left: 0;
}

.hamburger-button {
    z-index: 1001;
    background: #000;
    border: none;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    padding:5px;
    border-radius:50%;
    text-align: left;
}

.hamburger-button:hover {
    background: #000;
    color: #fff;
}

.circle {
    width: 45px;        /* Set the width of the circle */
    height: 45px;       /* Set the height of the circle */
    background-color: #fff; /* Circle background color */
    border-radius: 50%;  /* Make the div circular */
    display: flex;        /* Use Flexbox for centering */
    justify-content: center; /* Center horizontally */
    align-items: center;  /* Center vertically */
    color: #211d52;         /* Icon color */
    font-size: 32px;      /* Icon size */
    font-weight:600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); /* Optional shadow */
}

.circle i {
    margin: 0;           /* Ensure no margin around the icon */
}

.circle:hover {
    background: #000;
    color: #fff;
}


.content_main {
    display: flex;              /* Active le Flexbox pour cette div */
    flex-direction: column;     /* Disposition en colonne */
    justify-content: flex-start; /* Aligne le contenu en haut */
    padding: 10px;
    background-color: #f0f0f0;
    height: calc(100vh - 230px); /* Hauteur totale, soustrayant header et footer */
    width: 90%;                /* Fixe la largeur à 90% de la page */
    margin-left: auto;         /* Centre le conteneur horizontalement */
    margin-right: auto;        /* Centre le conteneur horizontalement */
}


.welcome-words {
        	width:100%;
            position:fixed;
            right:10px;
            top:5px;
            z-index:5000;
            color: white;
            text-align: right;
            margin-right:10px;
}
        
.contact-list {
            list-style-type: none;
			flex:1;
			display: flex;
  			flex-direction: column;
            padding: 0;
            margin-right: 10px;
            margin:O auto;
}

.contact-item {
            background-color: #f9f9f9;
            border: 1px solid #ddd;
            margin-bottom: 10px;
            padding: 15px;
            border-radius: 5px;
            margin:0 auto;
            width:90%;
}

.contact-item h3 {
            margin-top: 0;
            color: #170c47;
}

footer {
            background-color: #333;
            color: white;
            text-align: center;
            padding: 10px;
            position: fixed;
            bottom: 0;
            width: 100%;
}

@media screen and (max-height: 400px) {
	footer {
		position: static;
	}
}
        
/* Style de base du formulaire */


.styled-input {
 	width: 100%;
 	height:38px;
 	background: #cccccc;
 	border-radius:5px;
 	border: 0;
 	padding-left:20px;
 	padding:3px;
 	font-size:15px;
 	font-weight:300;
 	border: 1px solid #0f0f0f;
}

.styled-input:focus, .styled-input:hover  {
 	background: #e0e5f0;
 	border: 1px solid #211d52;
 	font-weight:500;
     box-shadow: 0 0 5px #e0e5f0;
}

.styled-input:before  {
 	background: #cccccc;
 	border: 1px solid #0f0f0f;
}

form {
    width: 100%;
    max-width: 80%;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Style des champs de saisie */
input[lb]type="text"[rb],
input[lb]type="email"[rb],
input[lb]type="tel"[rb],
input[lb]type="password"[rb],
input[lb]type="url"[rb],
input[lb]type="num"[rb],
textarea,
select {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Style du bouton de soumission */
input[lb]type="submit"[rb] {
    width: 100%;
    padding: 15px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
}

/* Style au focus pour une meilleure visibilité */
input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #4CAF50;

}

/* Augmenter la taille des options dans les listes déroulantes */
select {
    height: 50px;
}

/* Style pour les étiquettes */
label {
    display: block;
    margin-top: 8px;
    margin-bottom: 5px;
    font-weight: bold;
}

/* Media query pour les très petits écrans */
@media screen and (max-width: 320px) {
    input[lb]type="text"[rb],
    input[lb]type="email"[rb],
    input[lb]type="tel"[rb],
    input[lb]type="password"[rb],
    textarea,
    select,
    input[lb]type="submit"[rb] {
        font-size: 14px;
        padding: 12px;
    }
}


.button-group {
    display: flex; /* Aligne les boutons côte à côte */
    justify-content: center; /* Centre les boutons horizontalement */
    margin: 20px 0; /* Marge autour du groupe de boutons */
}

.btn {
    padding: 10px 20px; /* Espacement interne des boutons */
    margin: 0 10px; /* Espacement entre les boutons */
    border: none; /* Aucune bordure */
    border-radius: 4px; /* Coins arrondis */
    cursor: pointer; /* Changement de curseur sur hover */
    font-size: 16px; /* Taille de la police */
    transition: background-color 0.3s; /* Transition douce pour le changement de couleur */
}

.btn.active {
    background-color: #211d52; /* Couleur de fond pour le bouton actif */
    color: white; /* Couleur du texte */
}

.btn.inactive {
    background-color: #ccc; /* Couleur de fond pour le bouton grisé */
    color: #666; /* Couleur du texte grisé */
    cursor: not-allowed; /* Changement de curseur pour le bouton inactif */
}


/* OTC */
.content_otc {
    		flex: 1;
            margin-top:150px;
            width: 96%;
            height: 86vh;
            border-radius: 12px; /* Arrondir les coins */
            display: flex;
            align-items: flex-start; /* Aligne le contenu en haut */
            justify-content: center;
            margin: 10px; /* Espacement entre les divs */
            color:  #0f0f0f; /* Couleur du texte */
            padding:10px; /* Espacement interne */

            margin:0 auto;
}

.otp-container {
			flex: 1;
            background: green; /* Fond vert par défaut */
            padding: 10px; /* Espacement interne */
            border-radius: 12px; /* Coins arrondis */
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Ombre */
            text-align: center; /* Centre le texte */
            color: white; /* Couleur du texte */
            font-size: 32px; /* Taille de la police pour le code */
            width:80%;
}

.warning {
            background: orange; /* Fond orange pour 1:00 minute */
}

.danger {
            background: red; /* Fond rouge pour les 15 dernières secondes */
}

.otp-message {
    font-size: 32px; /* Font size */
    font-weight: 700; /* Font weight */
    color: #ff0000; /* Red color for emphasis */
    background-color: #ffffff; /* White background */
    padding: 20px; /* Padding inside the div */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    text-align: center; /* Center text within the div */
}

button_welcome {
    background-color: #211d52;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
}

button_welcome:hover {
    background-color: #090fd1;
}




