/* Falha ao minimizar. Retornando o conteúdo não minimizado.
(36,21): run-time error CSS1039: Token not allowed after unary operator: '-primary'
 */
#dvLogin {
    background-image: url(img/bgd.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: auto;
    position: relative;
}

.login-container {
    display: flex;
    background-color: #FFFFFFEA;
    border-radius: 15px;
    box-shadow: 0 0 25px 5px rgba(0, 0, 0, 0.5);
    width: 25%;
    max-width: 1000px;
    height: 60%;
    max-height: 600px;
    min-height: 400px;
    z-index: 999;
}

.login-form-section {
    flex: 1;
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

    .login-form-section h1 {
        color: var(--primary)
    }

.logo {
    height: 50px;
    width: auto;
}

.form-group {
    margin-bottom: 15px;
}

input {
    width: 100%;
    padding: 12px;
}

button {
    padding: 14px !important;
    margin-top: 20px !important;
}

.right-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 768px) {
    .login-form-section {
        padding: 20px;
    }

    .login-container {
        width: 80%;
    }
}

@media screen and (max-width: 1024px) {
    .login-form-section .dvLogoOS .logo:nth-child(1) {
        height: 30px !important;
    }
}

@media screen and (max-height: 600px) {
    #dvLogin {
        align-items: flex-start;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}

