* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body, html {
    height: 100%;
    font-family: Poppins-Regular, sans-serif;
    font-size: 12px;
}

.header {
    height: 40px;
    width: 100%;
    background-color: #13273c;
}

.footer {
    bottom: 0;
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.container_painel {
    height: 93%;
    position: relative;
}

.painel {
    height: 420px;
    width: 50%;
    margin: 0;
    position: relative;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: white;
    border-radius: 25px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    grid-template-columns: 50% 1fr;
    display: grid;
}

.div_imagem {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
}

.div_login {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.alert {
    position: relative;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.35rem;
}

.alert-green {
    color: #00673f;
    background-color: #cceee1;
    border-color: #b3e6d2;
}

.alert-danger {
    color: #8b0d00;
    background-color: #fad0cc;
    border-color: #f8b9b3;
}

@media screen and (max-width: 1300px){
    .painel{
        grid-template-columns: 1fr;
    }

    .div_imagem{
        display: none;
    }

    .div_login{
        justify-content: center;
    }
}

@media screen and (max-width: 700px ){
    .footer{
        bottom: 0;
        position: fixed;
        width: 100%;
        display: flex;
        justify-content: center;
    }
}

@media screen and (max-height: 600px){
    .header {
        margin-bottom: 80px;
    }
}
.form-container {
    position: relative;
    margin: auto;
    width: 255px;
    background: #fff;
    border: 3.9px double  #13273c;
    transition: all 300ms ease-in;
    box-shadow: 0px 35px 70px -40px rgba(0,0,0,.8);
    overflow: hidden;
    border-radius: 10px;
}

.form-container label.tab_label {
    float: left;
    color: #13273c;
    font-size: 11px;
    text-transform: uppercase;
    text-align: center;
    line-height: 2.6em;
    width: 30%;
    transition: all 300ms ease-in;
    cursor: pointer;
}

.form-container label.tab_label.recuperar {
    float: left;
    color: #13273c;
    font-size: 11px;
    text-transform: uppercase;
    text-align: center;
    line-height: 2.6em;
    width: 70%;
    transition: all 300ms ease-in;
    cursor: pointer;
}

.form-container label.tab_label:hover,
.form-container input[type="radio"]:checked + label.tab_label {
    background: #eeece7;
    color: #596673;
}

.form-container .acesso{
    background: #f2f2f2;
    padding: 2em;
    z-index: 10000000;
    height: 350px;
    padding-top: 20px;
}

.form-container input[type="radio"] {
    display: none;
}

.recuperar{
    list-style: none;
    display: flex;
    margin-top: 20px;
    margin-left: 55px;
}


.recuperar li{
    display: inline-block;
    margin: 0px 2px 0px 2px;
}

figure {
    float: left;
    width: 100%;
    height: 0px;
    transition: all 500ms cubic-bezier(0, 0, 0.4, 1.61);
}

figure p {
    color: #fff;
}

figure label.content_label {
    float: left;
    font-size: .7em;
    line-height: 2em;
    margin-top: 1.2em;
    margin-left: .4em;
    color: #fff;
}

.icon {
    position: absolute;
    left: 10px;
    top: 1.4em;
    color: rgba(255,163,105,.7);
}

/*fomulario*/

.input-div{
    position: relative;
    display: grid;
    grid-template-columns: 7% 93%;
    margin: 25px 0;
    padding: 0;
    border-bottom: 2px solid #d9d9d9;
}

.input-div.one{
    margin-top: 18px;
}

.i{
    color: #d9d9d9;
    display: flex;
    justify-content: center;
    align-items: center;
}

.i i{
    transition: .3s;
}

.input-div > div{
    position: relative;
    height: 35px;
}

.input-div > div > h5{
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-60%);
    color: #999;
    font-size: 12px;
    transition: .3s;
}

.input-div:before, .input-div:after{
    content: '';
    position: absolute;
    bottom: -2px;
    width: 0%;
    height: 2px;
    background-color: #13273c;
    transition: .4s;
}

.input-div:before{
    right: 50%;
}

.input-div:after{
    left: 50%;
}

.input-div.focus:before, .input-div.focus:after{
    width: 50%;
}

.input-div.focus > div > h5{
    top: -5px;
    font-size: 12px;
}

.input-div.focus > .i > i{
    color: #13273c;
}

.input-div > div > input{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    background: none;
    padding: 0.5rem 0.7rem;
    font-size: 1rem;
    color: #555;
    font-family: 'poppins', sans-serif;
}

.input-div.pass{
    margin-bottom: 4px;
}

a{
    display: block;
    text-align: right;
    text-decoration: none;
    color: #999;
    font-size: 1rem;
    transition: .3s;
}

a:hover{
    color: #faaf3b;
}

.btn{
    display: block;
    width: 100%;
    height: 45px;
    border-radius: 25px;
    outline: none;
    border: none;
    background-image: linear-gradient(to right, #13273c, #2b5e96, #13273c);
    background-size: 200%;
    font-size: 1rem;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    margin: 1rem 0;
    cursor: pointer;
    transition: .5s;
}
.btn:hover{
    background-position: right;
}

.error-validator{
    margin-top: 10px;
    font-size: 12px;
    color:red;
}


.div-error{
    font-size: 12px;
    padding-top: 5px;
    margin-top: -10px;
    background-color: rgba(255,0,0,0.4);
    height: 30px;
    border-radius: 5px;
}
.social-menu {
    padding: 8px;
    display: flex;
    list-style-type: none;
    justify-content: center;
}

.icon-logo{
    position: absolute;
    left: 10px;
}

.social-menu i {
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 20px;
    margin-right: 10px;
    transition: all 0.2s ease-in-out;
    display: flex;
    justify-content: center;
}

.social-menu i:before {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}

.social-menu a {
    text-decoration: none;
    color:#fff;

}
.social-menu a:hover {
    text-decoration: none;
    color: #faaf3b;
}

.fa-facebook {
    background:linear-gradient(45DEG, #7CB9E8, #28589c);
}

.fa-linkedin {
    background:linear-gradient(80DEG, #0077B5, #1C3977, #313335, #86888A, #CACCCE, #00A0DC);
}

.fa-instagram {
    background: linear-gradient(45DEG, #405DE6, #5851DB, #833AB4, #c13584, #E1306C, #FD1D1D);
}

.social-menu i:hover {
    opacity: .7;
    border-radius: 0;
}

@media screen and (max-width: 700px ){
    .footer{
        bottom: 0;
        position: fixed;
        width: 100%;
        display: flex;
        justify-content: center;
    }
}
