@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
}

body{
    background: linear-gradient(90deg,#eaefef,
    #545b60);
padding: 20px;
}
.container-all{
    width: 100%;
    max-width: 800px;
    margin: auto;
    margin-top: 100px;
    display: flex;
    border-radius: 20px;
    overflow: hidden;
}
.container-form{
    width: 80%;
    padding: 40px;
    background: #f7f7f7;

}
form .a{
    text-decoration:none;
}
.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"],
input[type="email"]
{
    width: 100%;
    height: 30px;
    background: rgba(0,0,0,0);
    border: 0px;
    outline: 0px;
    border-bottom: 1px solid rgba(0,0,0,0,12);
    font-size: 16px;
}
input[type="submit"]{
width: 80%;
height: 50px;
margin: 60px;
color: white;
border: 0px;
background: linear-gradient(90deg,#7F8C8D,
#2874A6);
font-weight: 300;
cursor: pointer;
font-size: 18px;
}

.text-footer{
    display: block;
    margin-top: top 100px;
    text-align: center;
    color: #7a7a7a;
    font-weight: 300;
}
.text-footer a{
    color: #029EE1;
    font-weight: 500;

}


/*lado derecho */

.container-text{
    width: 100%;
    background-image: url(../../archivos/cena.jpeg);
    background-position: center;
    background-size: cover;
    padding: 40px;
    position: relative;
}
.capa{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(90deg,#4a3642,
    #d8d4d3);
    opacity: 0.8;   
}
.title-description{
    position: relative;
    top:80px;
    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*/
.mensaje-error{
    color:red;
    display: block;
    margin-top: 10px;
}
/*Bienvenida*/
.container-welcome{
    width: 100%;
    max-width: 800px;
    text-align: center;
    padding: 40px;
    margin: auto;
    margin-top: 100px;
    background:white;
    border-radius: 20px;
}
.logo-welcome{
    width: 200px;
    margin: 20px;
}
.title-welcome{
    font-weight: 400;
    font-size: 40px;
    margin-top: 20px;
}
.close-sesion{
    width: 100%;
    max-width: 600px;
    margin: auto;
    display: block;
    padding: 20px;
    margin-top: 40px;
    background: linear-gradient(90deg,#BF4222,
    #E30F87);
    color: white;
    font-size: 20px;
    font-weight: 300;
}
.close-sesion:hover{
    background: linear-gradient(90deg,#E30F87,
    #BF4222); 

}


/* RESPOMSIVE*/

@media screen and (max-width: 800px){
    /*con esta instruccion 
    desaparecemos el container-text*/
    .container-text{
        display: none;
    }
    /*centramos el contenedor 
    al eliminar el container-text*/
    .container-form{
        margin:auto;
        width: 100%;
        background: white;
    }
}

@media screen and (max-width: 500px){
    .title-welcome{
        font-weight: 400;
        font-size: 30px;
        margin-top: 20px;
    }

}