/* .navbar {
    z-index: 1 !important;
} */
.modal-layout {
    display: grid;
    grid-template-columns: 50% 50%;
}

#login-dialog .modal-dialog {
    max-width: 950px;
    max-height: 600px;
    width: 100%;
    margin: 2rem auto;
}

#social-info-modal .modal-dialog {
    max-width: 950px;
    max-height: 600px;
    width: 100%;
    margin: 2rem auto;
}

.modal-left {
    position: relative; 
    max-height: 600px;
    overflow: hidden;
}

.modal-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px 0 0 6px;
    z-index: 0;
}

.left-text-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    top: 20%;
}

.bg-logo {
    padding: 5.25rem 0;
    width: 100% !important;
    max-width: 6.75rem;
    height: auto !important;
}

.bg-footer {
    padding-top: 4rem;
    width: 100% !important;
    max-width: 6.25rem;
    height: auto !important;
}

.login-header-modal {
    color: #EF5360 !important;
    font-size: 26px;
    font-weight: bold;
}

.login-text {
    color: black !important;
    font-size: 20px;
}

.modal-right, .modal-right{
    max-height: 600px;   
}

.modal-right{
    overflow-y: scroll;
}

.left-text-content .register-confirm-logo-mobile {
    width: 100% !important;
    max-width: 16.375rem !important;
    height: auto !important;
}

.left-text-content .register-info-logo-mobile {
    width: 100% !important;
    max-width: 23.25rem !important;
    height: auto !important;
}

.left-text-content .otp-logo-mobile {
    width: 100% !important;
    max-width: 16.375rem !important;
    height: auto !important;
}

.otp-inputs {
    display: flex;
    gap: 12px;
    margin: 32px 0 16px;
    justify-content: center;
    flex-wrap: nowrap;
  }
  
  .otp-box {
    width: 56px;
    min-width: 40px;
    height: 56px;
    border: 2px solid #FFEFF0;
    background: #fef5f5;
    border-radius: 10px;
    font-size: 24px;
    text-align: center;
    outline: none;
    transition: border .2s, box-shadow .2s;
    caret-color: transparent;
  }
  .otp-box:focus {
    border-color: #ec5e65;
    box-shadow: 0 8px 24px -4px rgba(236,94,101,0.4);
    background: #fff5f5;
  }

.masked-email {
    color: #EF5360;
}

@media (max-width: 992px) {
    #login-dialog .modal-dialog {
        max-width: 450px;
        max-height: none;
    }
    #login-dialog .modal-layout {
        margin: auto;
        grid-template-columns: 100%;
    }
    #login-dialog .modal-layout>.modal-left {
        display: none;
    }

    #social-info-modal .modal-dialog {
        max-width: 450px;
        max-height: none;
    }
    #social-info-modal .modal-layout {
        margin: auto;
        grid-template-columns: 100%;
    }
    #social-info-modal .modal-layout>.modal-left {
        display: none;
    }
}