/* 
    icos-gray: C7C7C7 
    icos-green: 4BD395 rgb(74,207,147)
*/

html{	
    overflow-y: scroll;    
    height: 100%;
    background-color: white;
    color: dimgray;
    
    
}

html::-webkit-scrollbar {
    background: #c5c5c5;
    width: 10px;
    height: 10px;    
}

html::-webkit-scrollbar-thumb {
    background: dodgerblue;  
    border-radius: 5px;    
}

html::-webkit-scrollbar-track {
    height: 10px;
}

body{
    width: 100%;
    height: 100%;
    
}

.tit{
    margin: auto;
    text-align: center;
    width: 80%;    
    margin-top: 20px;
    font-family: 'Helvetica Neue Bold';
    font-size: 18px;
}

#transicion{
    z-index: 5;
    background-image: url(../img/loading-green.gif);
    background-repeat: no-repeat;
    background-size: 200px;
    background-position: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    opacity: 1;
    transition: 0.9s;
}

.mnu-open{
    animation: show 0.6s forwards;
}

.mnu-close{
    animation: hide 0.6s forwards;    
}

@keyframes hide {
    from {
        height: 250px;
        }    
    to {
        height: 70px;
    }    
}

@keyframes show {
    from {
        height: 70px;
        }    
    to {
        height: 250px;
    }
}

input,textarea{
    width: calc(100% - 60px);
    padding: 10px;
    text-align: left;
    display: inline-block;
    border: 0px;    
    background-color: transparent;    
    resize: none;
    transition: 0.6s;
}



.checkbox{
    width: 20px;
    margin: 15px;
    background-size: 20px;
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-position: left;
    cursor: pointer;
}

.uncheck{
    background-image: url(../img/check-box-uncheck.png);
}

.check{
    background-image: url(../img/check-box-check.png);
}


input:focus, textarea:focus {
    outline: none;    
}

#acceder{
    position: relative;
    width: 150px;
    padding: 15px;
    border-radius: 5px;
    color: white;
    background: linear-gradient(240deg, rgb(75,211,149) 60%, rgba(255,255,255,0.8) 130%);
    border: 0px;
    box-shadow: 0px 2px 5px 5px #C7C7C7;    
    cursor: pointer;
    text-align: center;
}

row{
    width: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
    padding: 10px 5px;    
}

.rowinp{
    border-bottom: 1px solid #C7C7C7;
    margin-bottom: 20px;
}

form{
    width: calc(100% - 60px);
    align-items: center;
    justify-content: center;
    display: flex;    
    height: 350px;
    flex-direction: column;
    margin-left: 30px;
}

info{
    text-align: center;
    padding: 5px;
    width: 100%;
    display: flow-root;    
}

#logofrm{
    background-image: url(../img/bloquear.png);
    background-repeat: no-repeat;
    background-size: 150px;
    background-position: center;   
    height: 200px;
}

.icoinp{    
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;   
    height: 20px;
    width: 20px;
    float: left;
    display: inline-block;
    padding: 5px;
    margin-right: 20px;
}

#icouser{
    background-image: url(../img/usuario.svg);
}

#icopwd{
    background-image: url(../img/key.svg);
}

#recovery, #registry{
    text-align: center;    
}

#recovery>span,#registry>span{
    text-decoration: underline;
    cursor: pointer;
    color: blue;    
}

@media screen and (max-width:768px){
    
    .tit{
        font-size: large;
        margin-top: 80px;;
    }
    
    form {
        width: calc(100% - 30px);
        margin-left: 15px;
        margin-top: 20px;
    }
    
    #logofrm {
        background-size: 100px;
        height: 120px;
    }
    
    .checkbox{
        margin-left: 0px;
        width: 50px;
    }
    
    .txt-row{
        text-align: justify;
    }        
    
}