/* Falha ao minimizar. Retornando o conteúdo não minimizado.
(2,28): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(33,21): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(38,28): run-time error CSS1039: Token not allowed after unary operator: '-dark'
 */
#dvLogin {
    background-color: var(--primary);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: auto;
    position: relative;
}

.login-container {
    display: flex;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 0 25px 5px rgba(0, 0, 0, 0.5);
    width: 80%;
    max-width: 1000px;
    height: 85%;
    max-height: 600px;
    min-height: 500px;
    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)
    }

.image-section {
    flex: 1.25;
    background-color: var(--dark);
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    overflow: hidden;
}

.logo {
    height: 12vh;
    width: auto;
}

.logoNES {
    height: 7vh;
    width: auto;
}

.form-group {
    margin-bottom: 15px;
}

input {
    width: 100%;
    padding: 12px;
}

    input.cpfLogin::-webkit-inner-spin-button,
    input.cpfLogin::-webkit-outer-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    input.cpfLogin {
        -moz-appearance: textfield;
    }

        input.cpfLogin::-ms-input-spinner {
            display: none;
        }

button {
    padding: 14px !important;
    margin-top: 20px !important;
}

.right-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.animated-bg {
    background: linear-gradient(-45deg, #12A19A, #053869, #05549F, #12A19A);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
}

.spinner-loading {
    display: inline-block;
    vertical-align: middle;
}

    .spinner-loading svg {
        animation: rotate 1s linear infinite;
    }

    .spinner-loading .path {
        stroke-dasharray: 90,150;
        stroke-dashoffset: 0;
        stroke-linecap: round;
        animation: dash 1.5s ease-in-out infinite;
    }

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1,200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 90,150;
        stroke-dashoffset: -35;
    }

    100% {
        stroke-dasharray: 90,150;
        stroke-dashoffset: -124;
    }
}

@media screen and (max-width: 768px) {
    .login-form-section {
        padding: 20px;
    }

    .image-section {
        display: none;
    }

    .logo {
        height: 10vh;
    }

    .logoNES {
        height: 5vh;
    }
}

@media screen and (max-height: 600px) {
    #dvLogin {
        align-items: flex-start;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}

