/* 
    Author     : Alfredo Cruz A.
*/

html {
    height: 100%;
    background-color: white;
    font-size: 15px !important;
}

.body {
    height: 100%;
    background-color: #eee;
    font-size: 15px !important;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    padding: 0px; 
    margin: 0px;
    text-align: center;
}

#pageWrapper{
    background: url("/TotalPos-web/javax.faces.resource/img/backgroundLogin.png.xhtml?ln=themes&v=1_64") no-repeat center;
    background-size: cover;
    background-position: top;
    height: 100%;
}

#pageBWrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    height:100%;
    background-color: rgba(59,89,152,0.55);
    background-color: rgba(2,24,70,0.60);
}

#loginWrapper {
    width: 420px;
    height: 480px;
    background-color: rgba(255,255,255,1);
    box-shadow: 0px 0px 25px #999;
    border-radius: 4px;
    opacity: 1;
    -webkit-box-shadow: 0px 0px 14px 0px rgba(0,0,0,0.24);
    -moz-box-shadow: 0px 0px 14px 0px rgba(0,0,0,0.24);
    box-shadow: 0px 0px 14px 0px rgba(0,0,0,0.24); 
}

#loginHWrapper {
    height: 90px;
    font-size: 1.3em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #3D6AA2;
}

#companyNameWrapper {
    color: white;
    font-size: 0.9em;
    height: 30px;
    font-family:Georgia, serif;
}

#appNameWrapper {
    font-size: 2.1em;
    height: 52px;
    color: white;
    text-transform: uppercase;
    font-family:Georgia, serif;
}

#loginButton{
    margin-top: 40px; 
}

#loginCWrapper {
    height: 340px;
    padding: 7px 30px;
}

#loginCWrapper form{
    width: 100%;
}

#loginCWrapper button{
    height: 50px;
    width: 80%;
}

#loginCHWrapper{
    color: #3D6AA2;
    font-size: 1em;
    width: 100%;
    display: block;
    height: 70px;
    text-align: justify;
}

#loginCHWrapper h2{
    color: #31708f;
    margin-top: 10px;
}

#loginCBWrapper{
    color: #2929a3;
    padding: 0px 0px;
    font-size: 1em;
    width: 100%;
    display: block;
}

#loginFWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    font-size: 0.9em;
    color: #888;
}

@media(max-width:375px) {
    #pageWrapper{
        background: white;
    }
    
    #loginWrapper {
        width: 100%;
        height: 100%;
    }
}



@-webkit-keyframes fadeInDown {
    from {
        opacity:0;
        -webkit-transform: translatey(-25px);
        -moz-transform: translatey(-25px);
        -o-transform: translatey(-25px);
        transform: translatey(-25px);
    }
    to {
        opacity:1;
        -webkit-transform: translatey(0);
        -moz-transform: translatey(0);
        -o-transform: translatey(0);
        transform: translatey(0);
    }
}
@-moz-keyframes fadeInDown {
    from {
        opacity:0;
        -webkit-transform: translatey(-25px);
        -moz-transform: translatey(-25px);
        -o-transform: translatey(-25px);
        transform: translatey(-25px);
    }
    to {
        opacity:1;
        -webkit-transform: translatey(0);
        -moz-transform: translatey(0);
        -o-transform: translatey(0);
        transform: translatey(0);
    }
}
@keyframes fadeInDown {
    from {
        opacity:0;
        -webkit-transform: translatey(-25px);
        -moz-transform: translatey(-25px);
        -o-transform: translatey(-25px);
        transform: translatey(-25px);
    }
    to {
        opacity:1;
        -webkit-transform: translatey(0);
        -moz-transform: translatey(0);
        -o-transform: translatey(0);
        transform: translatey(0);
    }
}
.in-down {
    -webkit-animation-name: fadeInDown;
    -moz-animation-name: fadeInDown;
    -o-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
}