@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');

/* Contenedor Izquierdo  */

*{
    margin: 0;
    padding: 0;
    box-sizing: 'Roboto', sans-serif;
    text-decoration: none;
}

body{
    background: linear-gradient(90deg, #000000, #000566);
    padding: 20px;
}

.container-all{
    width: 100%;
    max-width: 1000px;
    margin: auto;
    margin-top: 40px;
    display: flex;
    border-radius: 20px;
    overflow: hidden;
}

.ctn-form{
    width: 80%;
    padding: 10px;
    background: white; 
}

.title{
    text-align: center;
    margin-top: 10px;
    font-weight: 300;
    color: #7a7a7a;
    display: block;
}

.logo{
    width: 130px;
    display: block;
    margin: auto;
    padding: 10px;
}

.desc{
    text-align: center;
    margin-top: 10px;
    font-weight: 300;
    color: #7a7a7a;
}
label{
    display: block;
    margin-top: 20px;
    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;
    border-bottom: 1px solid rgba(0,0,0,0.12);
    color: firebrick;
    font-size: 18px;
}

input[type="checkbox"]{
    margin-top: 10px;
    width: 40px;
    height: 20px;
    -webkit-appearance: none;
    background: #c6c6c6;
    outline: none;
    border-radius: 10px;
    box-shadow: inset 0 0 5px rgba(0,0,0,.5);
    transition: .5s;
}

input:checked[type="checkbox"]{
    background: #03a9f4;
}

input[type="checkbox"]:before{
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 10px;
    background: #fff;
    transform: scale(1.1);
    box-shadow: 0 2px 5px rgba(0,0,0,.5);
    transition: .5s;
}

input:checked[type="checkbox"]:before{
    margin-left: 20px;
}

input[type="submit"]{
    width: 100%;
    margin-top: 20px;
    height: 40px;
    font-weight: 500;
    cursor: pointer;
    font-size: 18px;
    border-radius: 10px;
    overflow: hidden;
    /*border-color: cadetblue;*/
}

.text-footer{
    display: block;
    margin-top: 80px;
    text-align: center;
    color: #7a7a7a;
    font-weight: 500
}

.text-footer a{
    color:blue;
    font-weight: 500;
}


/* Contenedor Derecho */

.ctn-text{
    width: 100%;
    background-image: url(../images/Recepcion.jpg);
    background-position: center;
    background-size: cover;
    padding: 40px;
    position: relative;
}
.title-description{
    position: relative;
    top: 450px;
    color:white;
    font-weight: 800;
    font-size: 30px;
}

.text-description{
    position: relative;
    top: 110px;
    color: white;
    font-size: 18px;
    font-weight: 200;
}

.msg-error{
    color: darkgreen;
    display: block;
    margin-top: 5px;
}


/*BIENVENIDA*/

.ctn-welcome{
    width: auto;
    max-width: 400px;
    text-align: center;
    padding: 40px;
    margin: auto;
    margin-top: 100px;
    background: white;
    border-radius: 20px;
}

.title-welcome{
    color: black;
    font-size: 50px;
}

.logo-welcome{
    width: 200px;
    margin: 10px;
}

.close-sesion{
    margin: auto;
    margin-top: 40px;
    display: block;
    font-size: 18px;
}


/* Responsive */

@media screen and (max-width: 650px){
    .ctn-text{
        display: none;
    }
    .ctn-form{
        margin: auto;
        width: 320px;
        background: white;
        border-radius: 20px;
    }
}








