.left-side {
    background-image: url('/images/pages/login/left-background.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    .left-container {
        display: flex;
        flex-direction: column;
        gap: 48px;
        justify-content: center;
        align-items: start;
        padding-left: 56px;
        margin-top: 20px;
        margin-bottom: 20px;

        img {
            width: fit-content;
        }

        .left-text-container {
            display: flex;
            flex-direction: column;
            gap: 36px;

            .left-titles {
                display: flex;
                flex-direction: column;
                gap: 16px;
                
                h1 {
                    font-family: 'Montserrat';
                    font-weight: 900;
                    font-size: 60px;
                    line-height: 60px;
                    letter-spacing: 0px;
                    text-align: start;
                    color: #00105C;
                }

                p {
                    font-family: 'Montserrat';
                    font-weight: 400;
                    font-size: 24px;
                    line-height: 32px;
                    text-align: start;
                    color: #212F40;
                }
            }
            
            .left-card{
                display: flex;
                flex-direction: column;
                gap: 40px;

                .card-item{
                    display: flex;
                    flex-direction: row;
                    gap: 24px;
                    
                    .card-text{
                        display: flex;
                        flex-direction: column;
                        gap: 8px;

                        h3 {
                            font-family: 'Montserrat';
                            font-weight: 600;
                            font-size: 20px;
                            line-height: 28px;
                            letter-spacing: 0px;
                            color: #212F40;
                            margin: 0;
                        }

                        p {
                            font-family: 'Montserrat';
                            font-weight: 400;
                            font-size: 16px;
                            line-height: 20px;
                            letter-spacing: 0px;
                            color: #212F40;
                            margin: 0;
                        }
                    }
                }
            }
        }
    }
}

.right-side {
    background-color: #DBE5F2;
    padding-left: 36px;
    padding-right: 36px;
    padding-top: 20px;
    padding-bottom: 20px;
    min-height: 100%;

    .right-container {
        width: 100%;
        max-width: 520px;
        display: flex;
        flex-direction: column;
        gap: 36px;
        justify-content: center;
        align-items: center;
        padding: 48px 48px 4px 48px;
        background-color: white;
        border-radius: 24px;
        border: 0;
        box-shadow: 0px 16px 24px 0px #CED9EC4D;

        .header-container {
            display: flex;
            flex-direction: column;
            gap: 40px;
            width: 100%;

            .header-icon {
                display: flex;
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
            }

            .header-text {
                display: flex;
                flex-direction: column;
                gap: 12px;

                h1 {
                    font-family: 'Montserrat';
                    font-weight: 700;
                    font-size: 32px;
                    line-height: 34px;
                    letter-spacing: 0px;
                    color: #00105C;
                    margin: 0;
                }

                p {
                    font-family: 'Montserrat';
                    font-weight: 400;
                    font-size: 14px;
                    line-height: 21px;
                    letter-spacing: 0px;
                    color: #212F40;
                    margin: 0;
                }
            }
        }

        .auth-login-form {
            width: 100%;
            .form-label {
                font-family: Montserrat;
                font-weight: 600;
                font-size: 14px;
                line-height: 17.4px;
                letter-spacing: 0%;
                color: #212F40;
                margin-bottom: 8px;
            }

            .input-group {
                border-radius: 12px !important;
                border: 1px solid #CED9EC !important;
                background-color: #ffffff !important;
                box-shadow: none !important;
                transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
                overflow: hidden;

                &:focus-within {
                    border-color: #00105C !important;
                    box-shadow: 0 0 0 0.1rem rgba(0, 16, 92, 0.1) !important;
                }

                &.is-invalid, &:has(.is-invalid) {
                    border-color: #ea5455 !important;
                    &:focus-within {
                        box-shadow: 0 0 0 0.1rem rgba(234, 84, 85, 0.1) !important;
                    }
                }

                .input-group-text {
                    background-color: transparent !important;
                    border: none !important;
                    padding-left: 16px !important;
                    padding-right: 12px !important;
                    display: flex;
                    align-items: center;
                    color: #6B7C94 !important;

                    img {
                        width: 20px;
                        height: 20px;
                        display: block;
                    }

                    svg {
                        width: 20px;
                        height: 20px;
                        stroke: #6B7C94 !important;
                        fill: none !important;
                    }
                }

                .form-control {
                    border: none !important;
                    background-color: transparent !important;
                    padding: 14px 16px !important;
                    font-family: 'Montserrat' !important;
                    font-weight: 400 !important;
                    font-size: 16px !important;
                    line-height: 16px !important;
                    color: #212F40 !important;
                    height: 52px !important;

                    &::placeholder {
                        color: #6B7C94 !important;
                        opacity: 0.8 !important;
                    }

                    &:focus {
                        box-shadow: none !important;
                        outline: none !important;
                        -webkit-text-size-adjust: 100%;
                        -moz-text-size-adjust: 100%;
                        -ms-text-size-adjust: 100%;
                        -o-text-size-adjust: 100%;
                    }
                }

                /* Adjust padding of the input when followed/preceded by icons */
                .input-group-text + .form-control {
                    padding-left: 4px !important;
                }

                .form-control + .input-group-text {
                    padding-left: 12px !important;
                    padding-right: 16px !important;
                }
            }

            .btn-login {
                background-color: #00105C !important;
                border: 0 !important;
                border-radius: 12px !important;
                padding: 16px 32px !important;
                margin-top: 24px;
                margin-bottom: 24px;
            }

            hr {
                margin: 0;
            }

            .footer-container {
                display: flex;
                flex-direction: row;
                gap: 12px;
                justify-content: center;
                align-items: center;
                padding-top: 24px;
                padding-bottom: 24px;

                p {
                    font-family: 'Montserrat';
                    font-weight: 400;
                    font-size: 14px;
                    line-height: 20.3px;
                    letter-spacing: 0px;
                    margin: 0;
                    color: #212F40;
                }

                img {
                    width: 24px;
                    height: 24px;
                    display: block;
                }
            }
        }

        .verify-form {
            width: 100%;

            .btn-verificar {
                width: 100%;
                padding: 16px 0px;
                font-family: 'Montserrat';
                font-weight: 600;
                font-size: 18px;
                line-height: 18px;
                letter-spacing: 0px;
                color: #ffffff;
                background-color: #00105C;
                border: 0;
                border-radius: 12px;
                margin-bottom: 16px;
            }

            .form-title {
                font-family: 'Montserrat';
                font-weight: 600;
                font-size: 14px;
                line-height: 17.4px;
                letter-spacing: 0%;
                color: #212F40;
                margin: 0;
                text-align: start;
                margin-bottom: 12px;
            }

            .otp-inputs {
                display: flex;
                gap: 8px;
                width: 100%;
                justify-content: space-between;
                margin-bottom: 36px;
            }

            .otp-digit {
                width: 100%;
                aspect-ratio: 1;
                max-width: 56px;
                border: 1.5px solid #D6D7DE;
                border-radius: 12px;
                background: #ffffff;
                font-family: 'Montserrat';
                font-weight: 600;
                font-size: 20px;
                text-align: center;
                color: #212F40;
                outline: none;
                transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;

                &::placeholder {
                    color: #6B7C94;
                    opacity: 0.5;
                }

                &:focus {
                    border: 1.5px solid #001FB3 !important;
                    box-shadow: 0px 0px 8px 0px #001FB340 !important;
                }

                &.is-invalid {
                    border-color: #ea5455 !important;
                }
            }

            .secondary-btn-container {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 12px;    
                width: 100%;
                margin-bottom: 30px;

                .btn-2fa-secondary {
                    padding: 12px 12px;
                    display: flex;
                    flex-direction: row;
                    align-items: center;
                    justify-content: center;
                    gap: 8px;
                    border-radius: 12px;
                    border: 0;
                    background-color: #EBEEFF;
                    font-family: 'Montserrat';
                    font-weight: 600;
                    font-size: 14px;
                    line-height: 14px;
                    letter-spacing: 0px;
                    color: #00105C;
                    width: 50%;
                    text-align: center;
                }
            }

            hr {
                margin: 0;
            }

            .footer-container {
                display: flex;
                flex-direction: row;
                gap: 12px;
                justify-content: center;
                align-items: center;
                padding-top: 24px;
                padding-bottom: 24px;

                p {
                    font-family: 'Montserrat';
                    font-weight: 400;
                    font-size: 14px;
                    line-height: 20.3px;
                    letter-spacing: 0px;
                    margin: 0;
                    color: #212F40;
                    text-align: center;
                }

                img {
                    width: 24px;
                    height: 24px;
                    display: block;
                }
            }
        }
    }
}

@media screen and (max-width: 992px) {
    .right-side {
        padding-left: 18px;
        padding-right: 18px;

        .right-container {
            padding: 24px 24px 4px 24px;

            .auth-login-form {
                .input-group {
                    .form-control {
                        font-size: 16px !important;
                    }
                }

                .footer-container {
                    
                    p {
                        text-align: center;
                        text-wrap-mode: nowrap;
                    }
                }
            }
        }
    }
}