/* Falha ao minimizar. Retornando o conteúdo não minimizado.
(2,28): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(42,21): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(71,17): run-time error CSS1039: Token not allowed after unary operator: '-light'
(78,28): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(89,46): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(89,65): run-time error CSS1039: Token not allowed after unary operator: '-secondary'
 */
#dvLogin {
    background-color: var(--primary);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: auto;
    position: relative;
}

.login-bg {
    position: absolute;
    inset: 0;
    background-image: url('img/bgd.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.4) saturate(0.7);
    z-index: 0;
}

.login-container {
    position: relative;
    z-index: 1;
    background: rgba(26, 15, 7, 0.88);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(201, 169, 110, 0.4);
    border-radius: 20px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.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: 120px;
    width: auto;
}

.logo-nes {
    filter: brightness(1.9) saturate(1.1);
}


.login-label {
    color: rgba(245, 237, 224, 0.7) !important;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    display: block;
    margin-bottom: 5px;
}

.login-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(201, 169, 110, 0.4);
    border-radius: 10px;
    padding: 10px 14px;
    color: var(--light);
    font-size: 0.92rem;
    transition: border-color 0.18s, box-shadow 0.18s;
}

    .login-input:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(139, 94, 60, 0.25);
        background: rgba(255,255,255,0.1);
    }

    .login-input::placeholder {
        color: rgba(245, 237, 224, 0.3);
    }

.login-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border: none;
    color: #fff;
    border-radius: 10px;
    padding: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: opacity 0.18s, transform 0.14s;
    text-transform: uppercase;
    margin-top: 4px;
}

    .login-btn:hover {
        opacity: 0.88;
        transform: translateY(-1px);
    }

@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: 100px !important;
    }
}

@media screen and (max-height: 600px) {
    #dvLogin {
        align-items: flex-start;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}
