/*
	* Template name: Authfy - Responsive Login and Signup Page Template
	* Template URI: http://koder.top/demo/authfy/
	* Version: 1.0	
	* Author: Farhadur Rahim
	* Author URI: https://themeforest.net/user/webmechanicx
*/

/* Table of Content
==================================================
	#01. Web Fonts
	#02. Common CSS
	#03. Section Panel UI CSS
    #04. Slideshow CSS
    #05. Check box UI CSS
    #06. Responsive CSS
*/

/*--------------------*/
/* Import all style */
/*--------------------*/

/*--------------------*/
/* 01. Web Fonts */
/*--------------------*/

/*--------------------*/
/* 02. Common CSS */
/*--------------------*/

@media screen and (max-width: 992px) {
    .direita {
        display: flex;
        flex-direction: column;
        overflow: auto;
    }
}

@media screen and (min-width: 992px) {
    .direita {
        display: inline-block;
        vertical-align: middle;
        float: none !important;
        overflow: hidden;
    }
}

.login-novo body, html {
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    background-color: #f0f2f5;
}

.login-novo body {
    font-family: 'Titillium Web', sans-serif;
    font-size: 1.6em;
    font-weight: 400;
    color: #44525f;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 100%;
    height: 100vh;
}

.login-novo ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.login-novo a {
    text-decoration: none;
    color: #2d385e;
}

    .login-novo a:focus {
        outline: none;
        text-decoration: none;
    }

.login-novo h1,
.login-novo h2,
.login-novo h3,
.login-novo h4,
.login-novo h5,
.login-novo h6 {
    font-family: 'Titillium Web', sans-serif;
    color: #2d385e;
}

.login-novo a,
.login-novo a:hover,
.login-novo a:focus {
    color: #4f77ff;
}

.login-novo .btn-primary {
    background-color: #4f77ff;
    border-color: #4f77ff;
}

    .login-novo .btn-primary:hover,
    .login-novo .btn-primary:active:hover,
    .login-novo .btn-primary:focus,
    .login-novo .btn-primary:active:focus,
    .login-novo .btn-primary:active,
    .login-novo .btn-primary.active {
        background-color: #486ff2;
        border-color: #486ff2;
    }


/*--------------------*/
/* 03. Section Panel UI CSS */
/*--------------------*/

/*Cor e transpar�ncia do painel*/
.authfy-panel-left {
    background-color: rgba(255,255,255,0.92);
    height: 100vh;
    align-items: initial;
    display: inline-grid;
    align-content: center;
}
/*Cor e transpar�ncia do gradiente azul de fundo*/
.authfy-panel-right {
    background-color: rgba(45, 56, 94, 0.75);
    color: #fff;
    height: 100vh;
}

    .authfy-panel-right .hero-heading .headline h1,
    .authfy-panel-right .hero-heading .headline h2,
    .authfy-panel-right .hero-heading .headline h3 {
        color: #fff;
        font-size: 48px;
        font-weight: 700;
    }

.authfy-login {
    min-height: 520px;
    position: relative;
    top: 0;
    left: 0;
}

.authfy-panel {
    padding: 0px 100px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all .5s ease;
    opacity: 0;
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
}

    .authfy-panel .authfy-heading {
        margin-bottom: 30px;
    }

.authfy-login .auth-title {
    font-weight: 700;
    margin-top: 0px;
}

.authfy-login .authfy-panel.active {
    opacity: 1;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    margin-top: 0px;
}

.authfy-login .social-buttons a {
    color: white;
}

    .authfy-login .social-buttons a:hover {
        color: white;
        opacity: 0.9;
    }

.authfy-login .social-buttons .btn-facebook {
    background: #3b5998;
}

.authfy-login .social-buttons .btn-twitter {
    background: #00aced;
}

.authfy-login .social-buttons .btn-google {
    background: #c32f10;
}


.authfy-login .loginOr {
    position: relative;
    font-size: 1.5em;
    color: #aaa;
    margin-top: 1em;
    margin-bottom: 1em;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
}

    .authfy-login .loginOr .spanOr {
        width: 100%;
        display: block;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

        .authfy-login .loginOr .spanOr:before,
        .authfy-login .loginOr .spanOr:after {
            content: "";
            background-color: #ddd;
            width: 55%;
            height: 1px;
            position: absolute;
            top: 19px;
        }

        .authfy-login .loginOr .spanOr:before {
            left: -50px;
        }

        .authfy-login .loginOr .spanOr:after {
            right: -50px;
        }

.panel-login .remember-row {
    padding: 0px 20px 2px 16px;
}

    .panel-login .remember-row label {
        font-weight: normal;
        position: relative;
        cursor: pointer;
        color: #666;
        padding-left: 24px;
    }

.authfy-login .forgotPwd {
    text-align: right;
}

.panel-login .form-control,
.panel-signup .form-control,
.panel-forgot .form-control {
    background-color: #fff;
    color: #333333;
    font-size: 18px;
    height: 50px;
    margin-bottom: 20px;
    padding: 12px 22px;
    border-radius: 3px;
    box-shadow: 0 3px 6px 0 rgba(0,0,0,0.1),0 0 2px 0 rgba(0,0,0,0.1);
    border: solid 1px #bcc2ce;
    outline: none;
}

.authfy-panel.panel-forgot {
    padding-top: 40px;
}

.panel-login .form-control:focus,
.panel-signup .form-control:focus,
.panel-forgot .form-control:focus {
    border-color: #4f77ff;
    z-index: 2;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
}

.pwdMask {
    position: relative;
}

    .pwdMask .pwd-toggle {
        color: #cccccc;
        position: absolute;
        z-index: 2;
    }

.panel-login .pwdMask .pwd-toggle,
.panel-signup .pwdMask .pwd-toggle {
    top: 15px;
    right: 15px;
}

.pwdMask .pwd-toggle:hover,
.pwdMask .pwd-toggle:focus {
    cursor: pointer;
}

.pwdMask .pwd-toggle:hover,
.pwdMask .pwd-toggle:focus,
.pwdMask .pwd-toggle.fa-eye {
    color: #4f77ff;
}

.panel-signup .term-policy a {
    text-decoration: underline;
}

/*--------------------*/
/* 04. Slideshow CSS */
/*--------------------*/

#authfySlider:before {
    /*content: "";*/
    /*background: -moz-linear-gradient(left, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0) 35%); /* FF3.6-15 */
    /*background: -webkit-linear-gradient(left, rgba(0,0,0,0.45) 0%,rgba(0,0,0,0) 35%); /* Chrome10-25,Safari5.1-6 */
    /*background: linear-gradient(to right, rgba(0,0,0,0.45) 0%,rgba(0,0,0,0) 35%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    /*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#73000000', endColorstr='#00000000',GradientType=1 ); /* IE6-9 */
    /*position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;*/
}

.authfy-panel-right .hero-heading {
    display: table;
    height: 100vh;
    width: 100%;
    text-align: center;
}

    .authfy-panel-right .hero-heading .headline {
        display: table-cell;
        vertical-align: middle;
    }

/*--------------------*/
    /* 05. Check box UI CSS */
    /*--------------------*/

    .login-novo .checkbox input[type="checkbox"] {
    position: absolute;
    right: 9000px;
}

    .login-novo .checkbox input[type="checkbox"] + .label-text:before,
    .login-novo .checkbox input[type="checkbox"] + .label-text:after {
        font-size: 11px;
        display: inline-block;
        width: 17px;
        height: 17px;
        padding: 2px;
        margin-left: 0;
        position: absolute;
        top: 2px;
        left: 0;
    }

    .login-novo .checkbox input[type="checkbox"] + .label-text:before {
        content: "";
        background-color: #ffffff;
        border: 1px solid #ced4da;
        border-radius: 3px;
        cursor: pointer;
        transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    }

    .login-novo .checkbox input[type="checkbox"] + .label-text:after {
        background-color: #4f77ff;
        color: #ffffff;
        border-radius: 2px;
        border-color: #4f77ff;
        line-height: 1.4;
    }

.login-novo .checkbox input[type="checkbox"] {
    opacity: 0;
    z-index: 1;
    cursor: pointer;
}

    .login-novo .checkbox input[type="checkbox"]:focus + .label-text:before {
        outline: thin dotted;
        outline: 5px auto -webkit-focus-ring-color;
        outline-offset: -2px;
    }

    .login-novo .checkbox input[type="checkbox"]:checked + .label-text:after {
        font-family: "FontAwesome";
        content: "\f00c";
    }


.brand-logo {
    margin-top: 8%;
}

/*--------------------*/
/* 06. Responsive CSS */
/*--------------------*/


@media (min-width: 320px) and (max-width: 767px) {

    .authfy-login {
        height: 540px;
    }

    .authfy-panel {
        padding: 0px 20px;
    }
}


@media (max-width: 320px) {

    .remember-row .col-sm-6 {
        width: 100%;
    }

    .authfy-login .forgotPwd {
        text-align: left;
        margin-top: 0px;
    }
}

@media (max-width: 767px) {
    .login-form {
        padding: 0px 15px !important;
    }
}

.btn-logar {
    height: 41px;
    font-size: 18px;
}

.nao-possui-conta {
    margin-top: 15px;
    font-size: 16px;
}

.or-option-login {
    font-size: 15px !important;
    background: #fff !important;
    color: #8a8a8a !important;
}

.separator-option-login {
    margin: 30px 0px !important;
}