@charset "UTF-8";
*{
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
body {
    background-color: #FFF;
    margin-left: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
}
.ventana {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    color: #fff;
    position: fixed;
    background: rgba(0,0,0,0.8);
    z-index: 11000;
    display: none;
}
.cerrar{
    position: absolute;
    top: 10px;
    right: 10px;
    font-weight: 900;
    text-align: right;
}
.cerrar a {
    color: #F78181;
    text-decoration: none;
}
.cerrar a:hover {
    color: red;
    background: #fff;
    border-radius: 4px;
}
/* ACCESO CLIENTES -EMPIEZA- */
form {
    position:relative;
    margin: auto;
    margin-top: 0px;
    width: 50%;
    max-width: 400px;
    background: rgba(102,102,102,0.8);
    padding: 30px;
    border: 1px solid rgba(0,0,0,0.2);
    -webkit-border: 1px solid rgba(0,0,0,0.2);
    -o-border: 1px solid rgba(0,0,0,0.2);
    -moz-border: 1px solid rgba(0,0,0,0.2);
    -ms-border: 1px solid rgba(0,0,0,0.2);
    z-index: 10000;
}
h2 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 16px;
    color: rgba(255,255,255,1);
}
input {
    display: block;
    padding: 6px;
    width: 100%;
    margin: 10px 0px;
    font-size: 12px;
}
input:hover {
    transform: scale(1.02);
    -webkit-transform: scale(1.02);
    -o-transform: scale(1.02);
    -moz-transform: scale(1.02);
    -ms-transform: scale(1.02);
    background-color: antiquewhite;
}
input:focus {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    background: antiquewhite;
    border-width: 5px;
    border-color: rgba(102,102,102,0.8);
}
input[type="submit"] {
    background: linear-gradient(#ffda63, #ffb940);
    background: -webkit-linear-gradient(#ffda63, #ffb940);
    background: -o-linear-gradient(#ffda63, #ffb940);
    background: -moz-linear-gradient(#ffda63, #ffb940);
    background: -ms-linear-gradient(#ffda63, #ffb940);
    border: 0;
    color: brown;
    opacity: 0.8;
    cursor: pointer;
    border-radius: 10px;
    margin-bottom: 0;
    font-size: 16px;
}
input[type="submit"]:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    opacity: 1;
}
input[type="submit"]:active {
    transform: scale(0.95);
    -webkit-transform: scale(0.95);
    -o-transform: scale(0.95);
    -moz-transform: scale(0.95);
    -ms-transform: scale(0.95);
}
.ventana franja4 {
    display: table;
    width: 100%;
    max-width: 400px;
    height: 38px;
    margin:auto;
    margin-top: 58px;
    background: rgba(242,242,255,0.8);
}
.caprichologin {
    position:relative;
    top: 4px;
    left: calc(50% - 146px);
}
/* ACCESO CLIENTES -FIN- */
/* CAMBIO DE PANTALLA CUANDO REDUZCA A 800px -EMPIEZA- */
@media screen and (max-width:800px) {
    .ventana {
        overflow-y:scroll;
    }
    /* ACCESO CLIENTES -EMPIEZA- */
    form {
        width: 75%;
    }
    .ventana franja4 {
    margin-top: 32px;
    }
    /* ACCESO CLIENTES -EMPIEZA- */
}
/* CAMBIO DE PANTALLA CUANDO REDUZCA A 800px -FIN- */
/* CAMBIO DE PANTALLA CUANDO REDUZCA A 500px -EMPIEZA- */
@media screen and (max-width:500px) {
    .ventana {
        overflow-y:scroll;
    }
    /* ACCESO CLIENTES -EMPIEZA- */
    form {
        width: 95%;
    }
    .ventana franja4 {
    margin-top: 32px;
    }
    /* ACCESO CLIENTES -FIN- */
}
/* CAMBIO DE PANTALLA CUANDO REDUZCA A 500px -FIN- */
/* CAMBIO DE PANTALLA CUANDO REDUZCA A 400px -EMPIEZA- */
@media screen and (max-width:400px) {
    .ventana {
        overflow-y:scroll;
    }
    /* ACCESO CLIENTES -EMPIEZA- */
    form {
        width: 95%;
    }
    .ventana franja4 {
    margin-top: 32px;
    }
    /* ACCESO CLIENTES -FIN- */
}
/* CAMBIO DE PANTALLA CUANDO REDUZCA A 400px -FIN- */