body {
	height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
	font-size: 1rem;
	font-weight: 200;
	line-height: 1.5;
	overflow: hidden;
}
.background {
	position: relative;
    height: 100vh;
	width: 100%; /* Couvre toute la largeur */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-background {
  position: fixed; /* ou 'absolute' si nécessaire */
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1000; /* Gardez la vidéo en arrière-plan */
  overflow: hidden;
}


video {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
}

.invalid-feedback {
	color: #ff0000f0;
	font-weight: 350;
	font-size: 1rem;
}

.social-buttons button {
    background: none;
    border: 1px solid white;
    border-radius: 5px;
    padding: 10px;
    color: white;
    width: 100%;
    margin: 5px 0;
    cursor: pointer;
}

.or-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.line {
    height: 2px; /* Hauteur des lignes */
    background-color: white; /* Couleur des lignes */
    flex-grow: 1; /* Permet aux lignes de remplir l'espace */
    margin: 0 10px; /* Espacement autour du texte "OR" */
}

.or {
    margin: 0 10px; /* Espacement pour centrer le texte "OR" */
    color: white; /* Couleur du texte "OR" */
    font-weight: bold; /* Rend le texte "OR" en gras */
}

input[type="email"], input[type="password"] {
    width: calc(100% - 0px);
    padding: 10px;
    margin: 5px 0;
    border: none;
    border-radius: 5px;
	box-sizing: border-box;
	background-color: #ffffffed;
}
button, a {
    text-decoration: none;
}
button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #4CAF50;
    color: white;
    cursor: pointer;
}

button.sign-in {
    padding: 10px 20px;
    border: none;
    color: white; /* Choisir une couleur de texte qui ressort bien sur un fond sombre */
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    background-image: linear-gradient(to right, #ff0077, #7700ff);
    outline: none;
	transition: background-color 0.3s, box-shadow 0.3s;
}

button.sign-in:hover {
    background-image: linear-gradient(to right, #ff3399, #9933ff); /* Un éclaircissement des couleurs originales */
    box-shadow: 0 0 8px 2px rgba(255, 255, 255, 0.6); /* Halo lumineux tout autour du bouton */
}


button.gofree-btn {
    padding: 5px 20px;
    border: none;
    color: white; /* Choisir une couleur de texte qui ressort bien sur un fond sombre */
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    background-color: blue;
    outline: none;
	transition: background-color 0.3s, box-shadow 0.3s;
}

button.gofree-btn:hover {
    background-color: blue; /* Un éclaircissement des couleurs originales */
    box-shadow: 0 0 8px 2px rgba(255, 255, 255, 0.6); /* Halo lumineux tout autour du bouton */
}

.forgot-password, .sign-up {
    display: block;
    color: white;
    text-decoration: none;
    margin: 10px 0;
}

.forgot-password:hover {
    color: #DF1366;
} 

.sign-up:hover {
    color: #DF1366;
}

.btn-google {
    display: flex;           /* Utilise Flexbox */
    align-items: center;     /* Centre les éléments verticalement */
    justify-content: center; /* Centre les éléments horizontalement */
    background: none;
    border: 1px solid white;
    border-radius: 5px;
    padding: 10px;
    color: white;
    width: 100%;
    cursor: pointer;
    text-align: center; /* Assurez-vous que le texte est centré si nécessaire */
	transition: background-color 0.3s, color 0.3s;
}

.btn-google:hover {
    background-color: rgba(255, 255, 255, 0.8); /* Blanc légèrement transparent */
    color: #808080; /* Gris */
}

.google-icon {
  height: 20px;
  margin-right: 10px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f4f4f4; /* Couleur de fond de la barre */
    color: white;
    padding: 10px 20px; /* Ajustement de l'espacement */
}

.logo img {
    height: 50px; /* Ajuste la taille de ton logo */
}

.logout-button button {
    padding: 5px 10px;
    background-color: #4E1159; /* Couleur de fond du bouton */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.logout-button button:hover {
    background-color: #c2302b; /* Couleur au survol */
}

.soon-text {
    font-size: 18px;
    font-weight: bold;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* Styles pour centrer l'alerte */
.alert-center {
	position: absolute;
	top: 10%;
	left: 50%;
	transform: translateX(-50%);
	width: 80%;
	max-width: 600px;
	text-align: center;
	z-index: 9999; /* S'assurer qu'elle soit au-dessus de tout */
}

.alert {
	padding: 15px;
	background-color: #ffcc00; /* Jaune pour avertissement */
	border: 1px solid #ffb300;
	color: #333;
	border-radius: 5px;
	font-size: 16px;
}

/* Logo en haut à droite */
.logo-translate {
    position: absolute;
    top: 20px;
    left: 20px;
}

.logo-translate img {
    height: auto;
    max-width: 100px; /* Limite la taille si nécessaire */
}

.spinner {
    border: 3px solid rgba(255, 255, 255, 0.3); /* Cercle transparent */
    border-top: 3px solid white; /* Partie visible du cercle */
    border-radius: 50%;
    width: 16px;
    height: 16px;
    animation: spin 1s linear infinite;
    margin-right: 8px; /* Espacement entre le spinner et le texte */
    display: inline-block; /* Permet l'affichage à côté du texte */
    vertical-align: middle;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.content {
    display: flex;
    height: 100vh;
    width: 100%;
}

.login-box {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    margin-left: 15%;
	margin-top: 50px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    color: white;
    text-align: center;
	max-height: 640px;
}

.images-box {
    flex: 1;
    display: flex;
    overflow: hidden;
    margin-left: auto;
    max-width: 50%;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.images-box.visible {
    opacity: 1;
}

.images-column {
    flex: 1;
    overflow: hidden;
    margin: 0 5px;
    position: relative;
    height: 100%; /* Assurez-vous que la hauteur est définie */
}

.images-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    /* Aucun overflow ici pour permettre le défilement des images dupliquées */
    animation: scroll 20s linear infinite;
}

.images-column.offset1 .images-wrapper {
    animation-duration: 40s;
    animation-delay: 0s;
}

.images-column.offset2 .images-wrapper {
    animation-duration: 44s;
    animation-delay: -5s;
}

.images-column.offset3 .images-wrapper {
    animation-duration: 48s;
    animation-delay: -10s;
}

.images-column img {
    width: calc(100% - 10px);
    margin: 5px;
    opacity: 1;
	border-radius: 5px;
    pointer-events: none;
}

@keyframes scroll {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%); /* Ajusté pour un défilement continu */
    }
}


@media (max-width: 820px) {
    .images-box {
        display: none;
    }
    .login-box {
        margin: 0 auto;
    }
}