.login-page{
    display:flex;
    min-height:100vh;
}

.login-left{
    width:45%;
    background:var(--cor-primaria);
    display:flex;
    justify-content:center;
    align-items:center;
    padding:60px;
}

.login-brand{
    color:white;
    max-width:420px;
}

.login-logo{
    max-width:220px;
    margin-bottom:40px;
}

.login-brand h1{
    font-size:42px;
    font-weight:300;
    margin-bottom:20px;
}

.login-brand p{
    font-size:18px;
    opacity:.9;
    line-height:1.7;
}

.login-right{
    width:55%;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:40px;
}

.login-card{
    width:100%;
    max-width:420px;
    background:white;
    border-radius:14px;
    padding:45px;
    box-shadow:0 15px 50px rgba(0,0,0,.08);
}

.login-card h2{
    margin-top:0;
    margin-bottom:10px;
    font-weight:600;
}

.login-subtitle{
    color:#888;
    margin-bottom:30px;
}

.form-control{
    border-radius:8px;
    height:48px;
    box-shadow:none;
}

.form-control:focus{
    border-color:var(--cor-primaria);
    box-shadow:0 0 0 3px rgba(0,0,0,.05);
}

@media (max-width:991px){
    .login-left{
        width:40%;
        padding:35px;
    }

    .login-right{
        width:60%;
    }
}

@media (max-width:767px){
    .login-page{
        flex-direction:column;
    }

    .login-left{
        width:100%;
        min-height:220px;
        padding:30px;
    }

    .login-right{
        width:100%;
        padding:20px;
    }

    .login-card{
        box-shadow:none;
        border-radius:0;
        max-width:100%;
        padding:30px 20px;
    }

    .login-logo{
        max-width:130px;
        margin-bottom:20px;
    }

    .login-brand{
        text-align:center;
    }

    .login-brand h1{
        font-size:30px;
    }

    .login-brand p{
        font-size:15px;
    }
}

.login-links {
    margin: 18px 10px;
    text-align: right;
}

.login-links a {
    color: var(--cor-secundaria);
    text-decoration: none;
    font-size: 14px;
    transition: color .2s;
}

.login-links a:hover,
.login-links a:focus {
    color: var(--cor-secundaria);
    text-decoration: underline;
}