html{
    height: 100%;
}

body {
    font-family:'Nunito',helvetica;  
    height:100%;
    margin: 0px;
    background-attachment: fixed;
    background: url(/img/login_register/fondo.svg) no-repeat fixed center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contenido {
    width: 30%;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 30px 0 30px 0;
    -webkit-box-shadow: 17px 14px 68px -33px rgba(0,0,0,1);
    -moz-box-shadow: 17px 14px 68px -33px rgba(0,0,0,1);
    box-shadow: 17px 14px 68px -33px rgba(0,0,0,1);
}

.logo{
    /*display: flex;
    margin-top: -10px;
    text-align: center;
    justify-content: center;*/
    display: flex;
    justify-content: center;
}

.logo img{
    width: 100px;
}

.iniciar_sesion{
    text-align: center;
    font-weight: bold;
    color: #2e81b9;
}

.login_error{
    margin-bottom: -13px;
    font-size: 15px;
    text-align: center;
    font-weight: bold;
    color: #F39325;
}

.confirmed_error{
    margin-bottom: -13px;
    font-size: 15px;
    text-align: center;
    font-weight: bold;
    color: #F39325;
}

/*FORMULARIO*/
.formulario{
    padding: 0px 1px;
}

.formulario div{
    position: relative;
}

.input_form {
    width:calc(100% - 20px); 
    margin-top: 30px;    
    padding: 10px;
    text-align: left;
    border: 1px solid grey;
    border-radius: 15px;
    display: block; 
}


.input_form:focus{
    border:1px solid #F39325;
    outline:none !important;
    outline-width: 0 !important;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}

input.error{
    border:1px solid #F39325 !important;
}

.formulario .label_form {
    position: absolute;
    font-size: 13px;
    padding-left: 10px;
    color: #2e81b9;        
    margin-top: 10px;
    transition: all 0.2s;
}

.active {
    position: absolute !important;
    top: -30px;
    font-size: 14px !important;
    text-transform: uppercase;
}

.btn_eye{
    background-color: transparent;
    color: grey;
    border: 0px;
    float: right;
    margin-left: -25px;
    margin-top: -25px;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.btn_form {
    width: 100%;
    height: 30px;
    border-radius: 12px;
    display: block; 
    background-color:  #2e81b9;
    border: 0px;
    font-size: 12PX;
    font-weight: bold;
    text-align: center;
    color: white;
    margin: 20px 0px;
    cursor: pointer;
}

.btn_form:hover {
    background-color:#4a9acf;
}

.btn_form:focus, .btn_eye:focus{
    outline:none !important;
    outline-width: 0 !important;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}

.footer_form {
    margin-top: 20px;
    text-align: center;    
    font-size: 11px;    
    color: #37474f;
    font-weight: bold;
    display: flex;
    justify-content:space-between;
}

.input_check {
    vertical-align: middle;
    width: 20px;
    margin: 0px;
}

a{
    text-decoration: none;
}

.a_footer{
    color: #37474f;
}

.register{
    font-size: 14px;
    text-align: center;
    color: #37474f;
}

.a_register{
    color: #4a9acf; 
    font-weight: bold; 
}

/*VALIDACIONES*/

label.error{
font-size: 12px;
color: #F39325;
padding-left: 10px;
font-weight: bold;
}


@media only screen and (max-device-width:480px), only screen and (max-width:480px) {
    .contenido { 
        width: 80% !important;        
        padding:30px 15px !important;
    }

    .logo img{
        width: 80px;
    }

    .formulario{
        padding: 0px 10px !important;
    }
    

/************************** AGREGAR MODAL ******************************/    
    .modal-window>div {
        width: 70% !important; 
    }
}


.modal-window {
    position: fixed;
    background-color: rgba(216, 216, 216, 0.70);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    visibility: hidden;
}

.modal-window:target {
    visibility: visible;
    opacity: 1;  
}

.modal-window>div {
    width: 30%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 2em;
    background: #ffffff;
    border-radius: 30px 0 30px 0;
}

.modal-text{
    text-align: center;
}


h1 {
    font-size: 150%;
    color: #2E81B9;
}

.modal-close {
    color: #2e81b9;
    line-height: 50px;
    font-size: 80%;
    position: absolute;
    right: 0;
    top: 0;
    text-align: center;
    width: 70px;
    text-decoration: none;
}

.modal-close:hover {
    font-weight: bold;
}

.botones{
    display: flex;
    justify-content: space-between;
}

.btn_cancelar {
    width: 40%;
    height: 30px;
    background-color: #ffffff;
    border-radius: 12px;
    border:1px solid #2e81b9;
    font-size: 12PX;
    font-weight: bold;
    text-align: center;
    color: #2e81b9;
    margin: 20px 0px;
    outline:none;
    cursor: pointer;
}

.btn_cancelar:hover {
    background-color:#EEF7FE;
}

.btn_enviar {
    width: 40%;
    height: 30px;
    border-radius: 12px;
    background-color: #2e81b9;
    border: 0px;
    font-size: 12PX;
    font-weight: bold;
    text-align: center;
    color: white;
    margin: 20px 0px;
    outline:none;
    cursor: pointer;
}

.btn_enviar:hover {
    background-color:#4a9acf;
}

/************************** FIN AGREGAR MODAL ******************************/    