*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    
    background-color: #ededed;
    font-family: "Nunito", sans-serif;
    overflow: hidden;
}
.wrapper{
   width: 100%;
}
.login__container{
    width: 70%;
    margin: 13rem auto;
    background-color: white;
    height: 374px;
    border-radius: 5px; /* Bordes redondeados */
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1), /* Sombra suave */
                0 6px 20px rgba(0, 0, 0, 0.1); /* Sombra más pronunciada */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.form{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.img-container{
   
    padding:20px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.img-container img{
    width: 100%;
    height: 40px;
}
.input-container{
    width: 100%;
    padding: 20px;
   
    position: relative;
}
.input-container input {
    font-size: 16px;
    width: 100%;
    outline: 0;
    background: none;
    border: none;
    background-color: #f5f5f5;
    padding: 0px 10px;
    height: 60px;
    border-radius: 5px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: 2px solid gray;
}
.input-container label {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    font-size: 16px;
    color: #999;
    
    padding: 15px 10px;
    transition: all 0.3s ease;
    pointer-events: none;
}
.input-container input:focus~label{
    top: 32px;
    font-size: 12px;
    color: #bb1b47;
}

.input-container input:focus{
    border-bottom: 2px solid #bb1b47;
    transition: 0.2s;
}

.button-container{
    width: 100%;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  
    text-align: center;
    margin-bottom: 50px;
    gap: 2rem;
}
.button-container input{
    width: 120px;
    padding: 15px;
    background-color: #0067b1;
    border: 0;
    cursor: pointer;
    color: white;
    box-shadow: 3px 2px 3px rgb(131, 130, 130);
    
}
.button-container p{
    color: gray;
    font-weight: 800;
    font-size: 15px;
}
.wrapper2{
    display: none;
}

/* HTML: <div class="loader"></div> */
.loader {
    width: 45px;
    aspect-ratio: .75;
    --c: no-repeat linear-gradient(rgb(98, 97, 97) 0 0);
    background: 
      var(--c) 0%   50%,
      var(--c) 50%  50%,
      var(--c) 100% 50%;
    animation: l7 1s infinite linear alternate;
  }
  @keyframes l7 {
    0%  {background-size: 20% 50% ,20% 50% ,20% 50% }
    20% {background-size: 20% 20% ,20% 50% ,20% 50% }
    40% {background-size: 20% 100%,20% 20% ,20% 50% }
    60% {background-size: 20% 50% ,20% 100%,20% 20% }
    80% {background-size: 20% 50% ,20% 50% ,20% 100%}
    100%{background-size: 20% 50% ,20% 50% ,20% 50% }
  }



.error-auth{
    color: red;
    text-align: center;
    font-size: 15px;
    margin-bottom: 20px;
}
#code901{
    /* padding: 0 50px; */
     font-size: 20px;
     letter-spacing: 5px;
    text-align: center;
 }
 #code901::placeholder {
     text-align: center;
     font-size: 20px;
     letter-spacing: 20px;
     
 }
 #code90{
    /* padding: 0 50px; */
     font-size: 20px;
     letter-spacing: 5px;
    text-align: center;
 }
 #code90::placeholder {
     text-align: center;
     font-size: 20px;
     letter-spacing: 20px;
     
 }

@media (min-width: 900px) {
    .wrapper{
    background-color: white;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
   
    height: 100vh;
    position: relative;
   }
   .wrapper2{
    display: block;
    position: absolute;
    left: 50%;
    width: 50%;
    height: 100%;

   }
   .wrapper2 img{
    width: 100%;
    height: 100%;
   }
    .login__container {
    width: 29%;
    margin-left: 10rem;
    margin-right: 20px;
    z-index: 2;
}


}
@media (min-width: 1024px){
    .login__container{
        width: 40%;
        margin: auto 0;
        margin-left: 80px;
    }
}
