﻿body, html, input {
    font-family: Calibri;
}

/*Container Login*/
.container-login {
    width: 400px;
    height: 380px;
    top: 50%;
    left: 50%;
    /*transform: translate(-50%, -45%);*/
    position: absolute;
    background: rgba(242,242,242,0.9);
    border-radius: 3px;
    box-shadow: 0 0 50px lightblue;
    display: none;
}

.container-login-cab {
    width: 100%;
    height: 90px;
    opacity: 1;
    /*background-color: rgba(242,242,242,0.85);*/
    border-radius: 5px 5px 0 0;
}

.container-login-cab-titulo {
    font-size: 32px;
    color: white;
    vertical-align: middle;
    line-height: 90px;
    height: 100%;
    width: 100%
}

.container-login-dados {
    width: 100%;
    height: 290px;
    background-color:rgba(255,255,255,0.85);
   /* background-color: white;
    opacity: 0.85;*/
}


.tbUser {
    -wap-input-format: 'N';
    background-image: url(/images/icons/user.svg);
    background-size: 20px auto;
    /*background-color: rgba(255,255,255,0.4);*/
}

.input-color {
    background-color: rgba(255,255,255,0.4);
    color: black;    
}

.input-color:focus {
    background-color: white;
}

.tbPass {
    background-image: url(/images/icons/password.svg);
    background-size: 20px auto;
}

.divSubmit {
    border: none;
    border-radius: 5px;
    background-color: #024B9A;
    color: white;
    width: 200px;
    height: 40px;
    display: none;
}

/* FIM Container Login*/

.container-forgot {
    width: 400px;
    height: 380px;
    top: 50%;
    left: 50%;
    /*transform: translate(-50%, -45%);*/
    position: absolute;
    background: rgba(242,242,242,0.9);
    border-radius: 3px;
    box-shadow: 0 0 50px lightblue;
}

#divForgot input:required:invalid, #divForgot input:focus:invalid {
    color: none;
}

#divForgot input:required:valid {
    color: dodgerblue;
}

/* Ajustes de Screen */
@media screen and (min-width: 300px) {   

    .container-login {
        width: 90%;
        top: 47%;
        transform: translate(-50%, -46%);
    }

    .container-forgot {
        width: 90%;
        top: 47%;
        transform: translate(-50%, -46%);
    }

    .container-login-cab-titulo {
        font-size: 24px;
    }

}

@media screen and (min-width: 600px) {
    
    .container-login {
        width: 400px;
        top: 50%;
        transform: translate(-50%, -48%);
    }

    .container-forgot {
        top: 50%;
        transform: translate(-50%, -48%);
    }

    .container-login-cab-titulo {
        font-size: 32px;
    }

}

/* FIM Ajustes de Screen */


.divmove {
    animation: mymove 2s infinite;
}

.divstop {
    animation: none;
}

@keyframes mymove {
    from {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

