body {
    margin: 0;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    /*background-color: #959292; /* Fond d'écran légèrement gris */
    background-color: black; /* Fond d'écran noir */
}

.bg {
  /* The image used */
  /*background-image: url("img/background.png");

  /* Full height */
  height: 100%; 

  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#mon_image {
      height: 100vh;
      object-fit: cover; /* L'image garde ses proportions et couvre */
      opacity: 0.7;
}

iframe {
      width: 100vw;
      height: 100vh;
      border: none;
	  opacity: 0.2;
}

#captcha-container {
    position: absolute;
}

#fake-captcha {
    display: flex;
    align-items: center;
    border: 1px solid #d3d3d3;
    padding: 10px;
    border-radius: 4px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.checkbox-container {
	margin-right: 10px;
	
}

#checkbox-img {
    width: 40px;
}


.text-container {
    display: flex;
    align-items: center; /* Aligne le texte et le logo horizontalement */
}

#mylabel {
    font-size: 20px; /* Taille du texte en 20px */
    margin-right: 10px;
    user-select: none;
}

#captcha-logo {
    width: 70px;
}
