[data-modal="auth"] {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 55;
    align-items: center;
    justify-content: center;
}

[data-modal="auth"].flex {
    display: flex !important;
}

[data-modal="auth"] > div {
    margin: 0 auto;
    width: 100%;
    max-width: 556px; /* lg:max-w-139 */
}

@media (max-width: 1023px) {
    [data-modal="auth"] {
        align-items: flex-end;
    }
    [data-modal="auth"] > div {
        height: calc(100% - 140px);
        border-radius: 30px 30px 0 0;
    }
}

@media (min-width: 1024px) {
    [data-modal="auth"] {
        align-items: center;
    }
    [data-modal="auth"] > div {
        height: auto;
        border-radius: 30px;
        max-height: 90vh;
        overflow-y: auto;
    }
}