/* *,
::after,
::before{
    margin: 0;
    padding: 0;
}
.caja_container{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.contenedor{
    border: solid 1px #000;
    width: 600px;
    padding: 100px;

}
.caja_logo{
    display: inline-block;
    width: 250px;
}
.caja_login{
    display: inline-block;
    width: 340px;
}
.caja_logo figure{
    width: 250px;
}
.caja_logo figure img{
    width: 100%;
}
.caja_login form{
    padding: 5px;
}
.caja_login form div label{
    min-width: 150px;
    display: inline-block;
    margin-top: 15px;
    font-size: 1.2rem;
} */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap');
*,
::after,
::before{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 0 10px 0 10px;
    background-color: #afbf27;
}
.main-box{
    max-width: 800px;
    height: 500px;
    box-shadow: 3px 3px 4px 5px #94a2a0;;
    display: flex;
    flex-direction: row;
    border-radius: 10px;
    background-color: #f6f9fb;

}
/*Zona del logo*/
.logo-box{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
}
.logo-box figure{
    width: 80%;
    border-radius: 15px;
    overflow: hidden;
}
.logo-box figure img{
    width: 100%;
}

/*Zona del login*/
.login-box{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
}
.login-box form{
    width: 60%;
}
.login-box form div{
    height: 40px;
    margin-bottom: 30px;
}
.login-box form div input[type=text], input[type=password]{
    width: 100%;
    height: 100%;
    padding-left: 5px;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: #94a2a0 solid 2px;
    font-size: 1.2rem;
    outline: none;
    background-color: #f6f9fb;
    color: #94a2a0 !important;
}
input[type=text]:focus{
    background-color: #f6f9fb;
}
input[type=password]:focus{
    background-color: #f6f9fb;
}
input[type=text]::placeholder{
    /* color: #afbf27; */
    color: #94a2a0;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
}
input[type=password]::placeholder{
    color: #94a2a0;;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
}
input[type=submit]{
    background-color: #94a2a0;
    color: #f6f9fb;
    border: none    ;
    box-shadow: 1px 1px 0.5px #999;
    font-family: 'Roboto', sans-serif;
}
@media screen and (max-width: 600px){
    .main-box{
        display: flex; 
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .logo-box{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 90%;
    }
    .login-box{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 80%; 
    }
    .login-box form{
        width: 100%;
    }
}

