@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
}
body{
    background:#142434;
    padding: 20px;
}
.container-all{
    width: 70%;
    max-width: width 1000px;
    margin: auto;
    margin-top: 100px;
    display: flex;
    border-radius: 20px;
    overflow: hidden;
}
.ctn-form{
    width: 80%;
    padding: 40px;
    background: white;
}
.logo{
    width: 150px;
    display: block;
    margin: auto;
}
.title{
    text-align: center;
    margin-top: 20px; 
    font-weight: 300;
    color:#7a7a7a  
}
label{
    display: block;
    margin-top: 30px;
    font-size: 20px;
    font-weight: 300;
    color: #7a7a7a;
}
input[type="text"],
input[type="password"]{
    width: 100%;
    height: 30px;
    background: rgba(0, 0, 0,0);
    border: 0px;
    outline: 0px;
    /* Transparencia del las letras de input */
    border-bottom: 1px solid rgba(0, 0, 0,0.12);
    color: #254465; 
    font-size: 16px;    
}
input[type="submit"]{
    width: 100%;
    height: 50px;
    margin-top: 60px;
    color: white;
    border: 0px;
    background: #396799;
    font-size: 300;
    cursor: pointer;
    font-size: 18px;

}
.text-footer{
    display: block;
    margin-top: 100px;
    text-align: center;
    color: #7a7a7a;
    font-weight: 300;
}
.text-footer a{
    color: #0964bc;
    font-weight: 500;
}


/* Lado der */

.ctn-text{
    width: 100%;
    background-image: url(REImage.jpeg);
    background-position: center;
    background-size: cover;
    padding: 40px;
    position: relative;

}
/* Es la opacidad adelante de la imagen */
.capa{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: black;
    opacity: 0.8;
}
.title-description{
    position: relative;
    top: 20%;
    color: white;
    font-weight: 300;
    font-size: 40px;
}
.text-description{
    position: relative;
    top: 110px;
    color: white;
    font-size: 18px;
    font-weight: 200;
}
/* texto de error */
.msg-error{
    color: red;
    display: block;
    margin-top: 10px;
}
/* Responsive */
@media screen and (max-width: 800px) {
    .ctn-text{
        display: none;
    }
    .ctn-form{
        margin: auto;
        width: 100%;
        /* Cuando se minimiza la patalla se convierte el fondo en blanco */
        background: white;
    }
    
}