/** * MIT License
 * Jhonel Angel Chocca Zevallos *  * Jhonel Angel Chocca Zevallos * Copyright (c) 2024  * Jhonel Angel Chocca Zevallos * Este sistema fue desarrollado por  * Jhonel Angel Chocca Zevallos. * Exclusivo para la Municipalidad Distrital de Chilca. * Prohibida la reproducci��n total o parcial sin autorizaci��n previa. */
*{
    font-family: "Nunito", sans-serif;
}
.estilos-login{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90vh;
}
.articulo-izquierda{
    border-radius: 50px 0 0 50px;
    border: 2px solid #D9D9D9;
    height: 600px;
    width: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.articulo-derecha{
    border-radius: 0 50px 50px 0;
    background-color: #1144A8;
    border: 2px solid #1144A8;
    height: 600px;
    width: 400px;
    justify-content: center;
   
}
.contenedor-texto{
    font-size: 20px;
    margin:10px 0;
    color: #1144A8;            
}
.contenedor-input input{
    width: 250px;
    height: 30px;
    border: solid 2px #D9D9D9;
    border-radius: 50px;
    font-size: 16px;
    font-family: sans-serif; 
    text-indent: 25px;
    display: flex; 
    align-items: center;
}:focus {
    border-color: #1144A8;
    outline: none;
  }
.btn-cancelar{
    font-size: 18px;
    color: #888888;
    border-radius: 50px;
    text-decoration: none;
    padding: 10px 15px;
    border: 2px solid #D9D9D9;
}
.btn-cancelar:hover{
    background-color:#D9D9D9;
    border: 2px solid #D9D9D9;
}
.btn-guardar{
    background-color: transparent;
    font-size: 18px;
    color: #1144A8;
    border-radius: 50px;
    text-decoration: none;
    border: none; 
    cursor: pointer;
    padding: 10px 15px;
    border: 2px solid #1144A8;
}
.btn-guardar:hover{
    background-color:#1144A8;
    color: #D9D9D9;
    border: 2px solid #1144A8;
}
.botones-login{
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
}
.text-derecha{
    font-size: 40px;
    color: #D9D9D9;
    font-weight: 600;
}
.position-derecha{
    margin: 30px;
    text-align: center;
    height: 50%;
}
.image-svg-login{
    display: flex;
    justify-content: center;
    height: 50%;
}
.iconos-login{
    position: absolute; 
    margin-left: 3px; 
    background-color: white; 
    padding: 4px; 
    border-radius:10px 0 0 10px; 
    margin-top: 3px;
    color: #888888;
}
.style-forgot{
    position: absolute; 
    margin-top: 350px;
}

@media (max-width: 1000px) {
   .articulo-derecha{
    display: none;
   }
   .articulo-izquierda{
    border-radius: 40px ;
    border: 2px solid #D9D9D9;
    height: 400px;
    width: 300px;
}
.style-forgot{
    margin-top: 300px;
}

} 
