/*ESTILOS DE VISTA_AFOROS.PHP*/
/*html,body { 
	height: 100%; 

}*/

.global-container{
    height:100%;

    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
}

form{
    padding-top: 10px;
    font-size: 14px;
    margin-top: 30px;
}

.card-title{ font-weight:300; }

.btn{
    font-size: 14px;
    margin-top:20px;
}


.login-form{ 
    width:330px;
    margin:20px;
}

.sign-up{
    text-align:center;
    padding:20px 0 0;
}



.overlay{
    /*background: rgba(0, 0, 0, .2);*/
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup{
    background: #f8f8f8;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, .3);
    border-radius: 10px;
    text-align: center;
    padding: 20px;
    width: 500px;
    transition: .6s linear ;
    /*transform: scale(0.5);/*empieza con ese tamaño*/
    opacity: 0;
    

}
.popup h3{
    text-align: center;
    /*opacity: 0;*/

}
.popup form .contenedor-inputs{

}
.popup form .contenedor-inputs input{
    width: 100%;
    margin-bottom: 20px;
    height: 52px;
    line-height: 52px;/*para que la fuente dentro del input quede centrada*/
    font-size: 18px;
    text-align: center;
    border: 1px solid #BBBBBB;
    color: grey;
}

.popup form .btn-submit{
    padding: 0 20px;
    height: 40px;
    line-height: 40px;
    border: none;
    color: #fff;
    background: #5E7DE3 ;
    border-radius: 3px;
    font-size: 16px;
    cursor: pointer;
    /*transition: .3s ease all;*/
}

.popup form .btn-submit:hover{
    background: rgba(94, 125, 227, .9);
}
.popup.active{
    /*opacity: 1;
    /*transform: scale(1);/*termina con este tamaño*/
}
.popup.active {
    animation: entrada 1s ease .5s forwards;
}

@keyframes entrada {
    from{
        transform: translateY(-200px);
        opacity: 0;
    }
    to{
        transform: translateY(0);
        opacity: 1;
    }
}