
@font-face{
    font-family: 'Poppins', sans-serif;
    src: url("fonts/Poppins-ExtraLight.ttf");
    src: url("fonts/Poppins-Light.ttf");
    src: url("fonts/Poppins-SemiBold.ttf");
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Poppins', sans-serif;
    /*background-image: url(img/fondo1.jpg);*/
    background-position:top center;
   object-fit: cover;  
    
}

.container_card{
    position: fixed;
        top:0;
        left: 0;
        right: 0;
        bottom:0;
     display: flex;
}
/* FORMULARIO */
.card{
   /* outline: 1px solid #000; */
    margin: auto;
    right: 50%;
    background: #fff;
    width: 100%;
    max-width: 350px;
    min-height: 420px;
   /* box-shadow: 0 0 32px -16px rgba(0,0,0,0.5);*/
    border-radius: 8px;
    
}
.card .card_img{
    width: 100%;
    height: 100%;
    display: block;
    margin: 10px auto;
    /* outline: 1px solid #000; */
}

.card .card_title{
    text-align: center;
    margin-bottom: 0px;
    color: #1f1410;
}

.card .card_formulario{
    width: 90%;
    margin: auto;
    text-align: center;
}
.card .card_formulario label{
    font-size: 1.1em;
}
.card .card_formulario input{
    display: block;
    margin: 10px auto;
    font-size: 1em;
    padding: 5px 10px;
    outline: none;
    border: 1px solid #000;
    border-radius: 10px;
    font-family: inherit;
    width: 200px;
    justify-content: center;
    
}
.card .card_error{
    color:crimson;
    display: none;
}
.card .card_formulario .labelUsuario:before{
    content: url('img/usuario.png');
    position: relative;
    top:2px;
}
.card .card_formulario .labelPassword:before{
    content: url('img/lock.png');
    position: relative;
    top:2px;
}

.card .card_formulario .card_cta{
    width: 100px;
    margin-top: 20px;
    background: #0382e0;
    border:0px;
    color:#fff;
    padding: 6px 10px;
    cursor: pointer;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 1em;
    font-family: inherit;
  
}

@media screen and (max-width:768px){
    .card{
       margin: auto;
    }
}

@media screen and (max-width:400px){
    body{
        background: white;
    }
    .card{
        box-shadow: none;
    }
    
}