.area-privada-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-height: 100vh;

}

.area-privada-image-wrapper img {
    max-height: 100vh;
    object-fit: cover;
    width: 100%;
}


.area-privada-login-wrapper {
    background: linear-gradient(360deg, #1E1E1E 0%, #000000 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.area-privada-login-wrapper .login-form {
    margin: 0 auto;
    max-width: 380px;
}

.area-privada-login-wrapper .login-form form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.area-privada-login-wrapper .login-form h2 {
    font-family: "Estricta Black", sans-serif;
    color: #FF0005;
    font-size: 47px;
    text-transform: uppercase;
    padding: 1rem 0rem;
    line-height: 47px;
    text-align: center;
    margin: 0;
}

.area-privada-login-wrapper .login-form-description {
    font-family: "Estricta Regular", sans-serif;
    color: white;
    text-align: center;
    font-size: 24px;
    margin: 0;
}

.forgot-password {
    text-decoration: underline;
    color: #545454;
    font-family: "Estricta Regular", sans-serif;
    text-align: center;
    cursor: pointer;
}

.serviciosSectionAreaPrivada {
    padding: 120px 0px 50px 0px;
    visibility: hidden;
    /* overflow: hidden;
     */
    /* outline: 1px solid red; */
}

.serviciosSectionAreaPrivada .serviciosYamalube {
    grid-template-columns: repeat(4, 1fr);
    height: auto !important;
}


@media screen and (max-width: 768px) {

    .area-privada-container {
        grid-template-columns: 1fr;
    }

    .area-privada-image-wrapper img {
        display: none;
    }

    .area-privada-login-wrapper {
        min-height: 100vh;
    }

    .area-privada-login-wrapper .login-form h2 {
        font-size: 30px;
        line-height: 32px;
    }

    .area-privada-login-wrapper .login-form-description {
        font-size: 16px;
    }
}