/**
* Login Form
*/

.login-form {
    width: 32rem;
    background-color: white;
    /* display: flex;
    flex-direction: column; */
    position: relative;
    padding: var(--padding-4);
}

/* .login-form img {max-height: 5rem;} */

/**
* Login Landscape
*/

.login-landscape {
    background-color: var(--primary-color);
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('../../images/ImagenPrincipal.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    width: calc(100vw - 32rem);
    justify-content: center;
    align-items: center;
}

.email-label{
    width: 100%;
    text-align: center;
}

.login-landscape img {
    width: 35rem;
    height: 13.7rem;
    padding: var(--padding-4);
}

@media (min-width: 1480px) {
    .login-landscape img {
        width: 55rem !important;
        height: 20rem;
    }
}

.logo-login {
    width: 23rem;
    height: 5rem;
}

.bottom-form {
    position: absolute;
    bottom: 4rem;
    width: calc(100% - var(--padding-4) * 2) !important;
}


.main {
    display: flex;
}
.side-one {
    width: 32rem !important;
    height: 100vh;
}
.side-two {
    /* background-color: var(--primary-color); */
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('../../images/ImagenPrincipal.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    width: calc(100vw - 32rem);
    display: flex;
    justify-content: center;
    align-items: center;
}

.element-two {
    width: 75%;
    height: auto;
}
.element-two img {
    width: 100% !important;
    /* width: 760px;
    height: 158px; */
}

.side-one-content {
    /* padding: var(--padding-4); */
}

.item-one {
    height: 20vh;
    display: flex;
    justify-content: center;
    align-items: end;
}
.item-one img {
    width: 23rem;
    height: 80px;
}

.item-two {
    height: 70vh;
    padding-left: var(--padding-4);
    padding-right: var(--padding-4);
}

.item-three {
    height: 10vh;
    padding-left: var(--padding-4);
    padding-right: var(--padding-4);
    text-align: center;
}

@media (max-height: 820px) {
    .pt-5 {
        padding-top: 3rem !important;
    }
    .mt-3 {
        margin-top: 2rem !important;
    }
    .item-one img {
        width: 17.25rem;
        height: 60px;
    }
}