body {
    margin: 0;
    padding: 0;
    display: flex;
    transition: background-image 7s ease;
    background-size: cover;
    justify-content: center;
    align-items: center;
    height: 100vh; 
    font-family: 'Arial', sans-serif;
    overflow: hidden;
    
  }
  body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Ajusta el valor alpha (0.5) según sea necesario para oscurecer más o menos */
    z-index: -1;
  }
  /*container loggin*/
  .container-banner-login {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    width: 990px;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.0) 50%, rgba(164, 184, 244, 0.9) 100%), url("../img/CORUS_CLOUD_BANNER.jpg");
    background-position: right;
    background-size: cover;
    border-radius: 20px;
    box-shadow: 100px -50px 50px rgba(9, 5, 5, 0.6);
    justify-content: flex-start;
  }
  .login-and-user-container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centra los elementos horizontalmente */
    margin-left: 200px;
    margin-top: -40;
  }
  
  input{
    border-radius: 4px;
    border: 0;
    padding: 15px;
    background-color: rgb(215, 244, 245);
    font-size: 16px;
}
input:focus {
    font-size: 16px;
}
.user-cont p{
    margin-left: 0px;
    margin-bottom: 0;
    display: flex;
    text-align: left;
    padding: 0;
    font-size: 21;
}
.login-cont p{
    margin-left: 0px;
    margin-bottom: 0;
    display: flex;
    text-align: left;
    padding: 0;
    font-size: 21;
}
/*boton*/
.container-button-login{
    margin-top: 50px;
}
button{
    padding: 2px 40px;
    font-size: 16px; 
    text-align: center;
    background-color:#4a4a4b;
    border: 0;
    border-radius: 6px;
    transition: background-color 0.3s;
}
button p{
    color: white;

}
.container-button-login button:hover {
    background-color: #4273ab; /* Cambia a tu color deseado al pasar el ratón */
  }
  .container-lenguages {
    height: 350px;
    width: 550px;
    display: flex;
    justify-content: flex-end; /* Alinea el contenido a la derecha */
    align-items: flex-end;
  }

  .container-lenguages img{
    height: 20px;/* Alinea las imágenes verticalmente en el centro */
    margin-left: 10px ;
  }
.es img{

    filter: brightness(90%)
}
.gb img{

    filter: brightness(90%)
}
.ct img{
    filter: brightness(90%)
}

.es:hover{
    filter: brightness(2.6);
}
.ct:hover{
    filter: brightness(2.6);
}
.gb:hover{
    filter: brightness(2.6);
}
  
.icon {
    position: relative;
    cursor: pointer;
    margin-left: -30px; 
    height: 25px;
    width: 25px;
    top: 10px;
    left: -10px;
    opacity: 0.2;
  }

@media (max-width: 768px) {
  body {
      flex-direction: column; 
      padding: 10px; 
      justify-content: flex-start; 
  }
  
  body::before {
      background: rgba(0, 0, 0, 0.5); 
  }
  .container-banner-login {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column; 
      height: 100%;
      width: 115%; 
       
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.0) -20%, rgba(164, 184, 244, 0.9) 100%), url("../img/CORUS_CLOUD_BANNER.jpg");
      background-position: center; 
      background-size: 415%;
      background-position-x: 347.7%;
      box-shadow: 10px 10px 20px rgba(9, 5, 5, 0.6); 
      border-radius: 10px; 
      margin: 10px; 
      padding: 10px; 
  }

  
  input {
      padding: 12px; 
      font-size: 14px; 
  }

  .icon {
      margin-left: -20px; 
      height: 20px;
      width: 20px; 
      top: 8px; 
      left: -5px; 
  }
  .login-and-user-container {
      margin-left: 0; 
      margin-top: 10px; 
      padding: 10px; 
      width: 100%; 
  }

  button {
      margin-top: 45%;
      padding: 10px 20px; 
      font-size: 14px; 
      width: 100%; 
      max-width: 300px; 
  }
  .container-lenguages {
      height: auto; 
      width: 90%; 
      justify-content: center; 
      align-items: center; 
      padding: 10px; 
      flex-direction: column; 
  }
}
