﻿/*
    ==========================================
    Helpers
    ==========================================
*/

*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    color: #808080;
}

a {
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}


/*
    ==========================================
    Login
    ==========================================
*/
.bg-login {
    background: url('../img/bg_login.png') 50% 0 no-repeat;
    background-attachment: fixed;
    background-size: cover;
}


.box-login {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    min-height: 420px;
    height: 50%;
    margin: auto;
    width: 80%;
    background-color: #FFF;
    -webkit-box-shadow: 0px 0px 26px 0px rgba(0,0,0,0.81);
    -moz-box-shadow: 0px 0px 26px 0px rgba(0,0,0,0.81);
    box-shadow: 0px 0px 26px 0px rgba(0,0,0,0.81);
}

@media screen and (min-width: 1366px) {
    .box-login {
        width: 1000px;
    }
}

.login-content {
    height: 100%;
}

.presentation,
.user-login {
    float: left;
}

.presentation {
    color: #FFF;
    position: absolute;
    left: 1em;
    bottom: 1em;
    width: 65%;
}

    .presentation > .title,
    .presentation > .text {
        font-weight: normal;
    }

    .presentation > .title {
        font-size: 32px;
    }

    .presentation > .text {
        font-size: 16px;
    }


.user-login {
    position: relative;
    padding: 1em 1em 1em 65%;
    height: 100%;
    width: 100%;
    background: url(../img/portal_cliente.png) 0% 0% no-repeat;
    background-size: 65% 100%;
}

    .user-login > .logo,
    .user-login > .login {
        margin: 0 auto;
    }

    .user-login > .access {
        text-align: center;
        font-weight: 400;
    }

    .user-login > .login {
        width: 90%;
        margin-top: 3em;
    }

        .user-login > .login > .group {
            position: relative;
        }

            .user-login > .login > .group > .control {
                display: block;
                width: 100%;
                height: 40px;
                border: 0;
                border-bottom: 2px solid #ef8b81;
            }

                .user-login > .login > .group > .control:focus {
                    outline: none;
                }

        .user-login > .login > .group,
        .forgot-password {
            margin-bottom: 2em;
        }

.forgot-password {
    color: #ef8b81;
    font-size: 13px;
    font-weight: bold;
    text-align: center;
    display: block;
    margin-top: 1em;
}

.toggle-password {
    cursor: pointer;
    position: absolute;
    right: 0px;
    bottom: 0px;
}

    .toggle-password > .icon {
        width: 30px;
        height: 30px;
    }

        .toggle-password > .icon.hide {
            position: absolute;
            top: 0;
            visibility: hidden;
        }

    .toggle-password.visible > .icon.hide {
        visibility: visible;
    }

.btn-login {
    cursor: pointer;
    color: #FFF;
    font-size: 18px;
    display: block;
    padding: .8em 1em;
    width: 100%;
    background-color: #55aaaf;
    outline: none;
    border: 0;
    -webkit-transition: background .15s ease;
    -moz-transition: background .15s ease;
    transition: background .15s ease;
}

    .btn-login:hover {
        background-color: #499093;
    }

.btn-Esqueci_A_Senha {
    cursor: pointer;
    color: #f91414;
    font-size: 12px;
    display: block;
    padding: .8em 1em;
    width: 100%;
    background-color: #ffffff;
    outline: none;
    border: 0;
    -webkit-transition: background .15s ease;
    -moz-transition: background .15s ease;
    transition: background .15s ease;
    text-align:center;
    vertical-align:top;
}

    .btn-login:hover {
        background-color: #499093;
    }


.modalEsqueciSenha {
    display: none;
    width: 400px;
    height: 200px;
    position: absolute;
    left: 0;
    top: 0;
    background: #FFF;
    z-index: 9900;
    padding: 10px;
    border-radius: 10px;
}

.modalPrimeiroAcesso {
    display: none;
    width: 600px;
    height: 250px;
    position: absolute;
    left: 0;
    top: 0;
    background: #FFF;
    z-index: 9900;
    padding: 10px;
    border-radius: 10px;
}

#mascaraEsqueciSenha {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9800;
    background-color: rgba(0, 0, 0, 0.5);
}

#mascaraPrimeiroAcesso {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9800;
    background-color: rgba(0, 0, 0, 0.5);
}

.fechar {
    display: block;
    text-align: right;
    float: right;
}

.emailRecover {
    display: block;
    width: 100%;
    height: 40px;
    border: 0;
    border-bottom: 2px solid #ef8b81;
}

    .emailRecover:focus {
        outline: none;
    }

.emailPrimeiroAcessoLabel{
    color: rgb(85, 170, 175);
}
