.container_login
{
    display: flex;
    background-color: #ffffff;
    flex-direction: column;
    @media (min-width: 768px) {
        flex-direction: column-reverse;
        padding: 6rem;
    }
    @media (min-width: 1024px) {
        flex-direction: row;
        height: 100dvh;
        gap: 4rem;
        padding: 3rem 6rem;
    }
}
.img-banner {
    object-fit: cover;
    height: 100%;
    width: 100%;
    @media (min-width: 768px) {
        aspect-ratio: 16/9;
        /* border-radius: 1rem; */
    }
    @media (min-width: 1024px) {
        flex: 4;
        aspect-ratio: auto;
        /* border-radius: 1rem; */
    }
    .carousel-inner{
        height: 100%;
        .item {
            height: 100%;
        }
    }
    img {
        /* object-fit: cover; */
        height: 100% !important;
        width: 100%;
        @media (min-width: 768px) {
            border-radius: 1rem;
        }
        @media (min-width: 1024px) {
            border-radius: 1rem;
        }
    }
}
.login_box {
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
    background-color: #ffffff;
    margin-top: -4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    @media (min-width: 768px) {
        margin-top: 0;
    }
    @media (min-width: 1024px) {
        flex:3;
    }
}

.login_box__container{
    width: 100%;
    padding: 5rem 2rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
    @media (min-width: 768px) {
        max-width: 70%;
        padding: 0 0 5rem;
    }
    @media (min-width: 1024px) {
        padding: 0px;
    }
}

.figure_logo {
    width: 100%;
    display: flex;
    justify-content: center;
    img{
        width: fit-content;
        display: block;
        object-fit: cover;
    }
}
.social-copyright {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 5rem;
    @media (min-width: 768px) {
        display: none;
    }
    @media (min-width: 1024px) {
        display: flex;
    }
}
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    a {
        text-decoration: none;
    }
}
.social-copyright-tablet {
    order: -1;
    display: none;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    @media (min-width: 768px) {
        display: flex;
    }
    @media (min-width: 1024px) {
        display: none;
    }
}
.fast-icono{
    display: none;
    position: fixed;
    bottom: 0;
    right: 0;
    @media (min-width: 1024px) {
        display: block;
    }
}
h3{
    color: #F2911C;
    font-weight: 500;
}
form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.copyright {
    display: flex;
    justify-content: center;
}
button, a.btn {
    border-radius: 0.8rem !important;
}
button.btn-primary {
    background: #EC6317 !important;
    border: 1px solid #EC6317;
}
.append-icon- {
    border: 0;
    position: absolute;
    right: 40px;
    top: 3px;
}
.prepend-icon input.input-lg {
    padding-left: 46px;
}

#playstoreModal {
    .header {
        position: relative;
    }
    .btn-close {
        position: absolute;
        right: 1rem;
        top: 1rem;
        border-radius: 50% !important;
        border: 0;
        padding: 3px 10px;
        font-size: 1.8rem;
        background: transparent;
    }
    .btn-close:hover{
        background: #F5F5F5;
    }

    .btn-info {
        position: absolute;
        bottom: -1.5rem;
        border-radius: 50% !important;
        padding: 10px;
        border: 0;
        left: 1.5rem;
        background: #FEF2E6;
    }

    .logo img {
        width: 100%; 
        border-radius: 1.5rem;
    }

    h3 {
      color: #0A0A0A;  
    }

    .modal-footer {
        display: flex;

        & button {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 5px;
        }
    }
}