/* Login */
.autenticar {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form {
    position: absolute;
    margin-top: 40px;
    width: 400px;
    padding: 30px;
    border-radius: 10px;
    background: #ffffff;
}

.form .brasao img {
    width: 40px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
}


.form.signup {
    opacity: 0;
    pointer-events: none;
}

.forms.show-signup .form.signup {
    opacity: 1;
    pointer-events: auto;
}

.forms.show-signup .form.login {
    opacity: 0;
    pointer-events: none;
}

.form h6 {
    font-size: .8em;
    font-weight: 600;
    color: #252525;
    text-align: center;
}

.form .diretion {
    font-size: .8em;
    font-weight: 600;
    color: #424242;
    text-align: center;
    font-style: italic;
}

form {
    margin-top: 50px;
}

.form .field {
    position: relative;
    height: 50px;
    width: 100%;
    margin-top: 20px;
    border-radius: 6px;
}

.field input,
.field button {
    height: 100%;
    width: 100%;
    border: none;
    font-size: 16px;
    font-weight: 400;
    border-radius: 6px;
}

.field input {
    outline: none;
    padding: 0 15px;
    border: 1px solid#767676;
}

.field input:focus {
    border-bottom-width: 2px;
}

.eye-icon {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 18px;
    color: #8b8b8b;
    cursor: pointer;
    padding: 5px;
}

.field button  {
    font-weight: 500;
    background-color: #353535;
    transition: all 0.3s ease;
    cursor: pointer;
}

.field button:hover {
    background-color: #000000;
}

.field button a {
    color: #fff;
}

.field button a:hover {
    color: #fff;
    text-decoration: none;
}

.form-link {
    text-align: center;
    margin-top: 10px;
}

.form a {
    color: #0f0f0f;
    text-decoration: none;
}

.form-content a:hover {
    text-decoration: underline;
    color: #454545;
}


/* Responsive Tela Smartphone */
@media screen and (max-width: 768px) {
    
    .autenticar {
        height: 100vh;
        width: 100%;
        margin: 10px auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .form h6 {
        font-size: .7em;
        font-weight: 600;
        color: #292929;
        text-align: center;
    }

}