.eauth-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .55);
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease, visibility .5s ease;
}
.eauth-modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
}
.eauth-modal-overlay.is-open {
    opacity: 1;
}
.eauth-modal {
    position: relative;
    background: #fff;
    padding: 28px 28px 24px;
    max-width: 380px;
    width: calc(100% - 40px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
    font-family: inherit;
    transform: translateY(16px) scale(.98);
    opacity: 0;
    transition: transform .5s ease, opacity .5s ease;
}
.eauth-modal-overlay.is-open .eauth-modal {
    transform: translateY(0) scale(1);
    opacity: 1;
}
.eauth-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 28px;
    height: 28px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    color: #1a1a1a;
    font-size: 26px;
    line-height: 1;
}
.eauth-modal-title {
    margin: 0 0 12px;
    padding-right: 24px;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 700;
    color: #1a1a1a;
}
.eauth-modal-text {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 1.45;
    color: #4F4F4F;
}
.eauth-modal-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.eauth-btn {
    border: 1px solid #2b2b2b;
    padding: 11px 18px;
    font-size: 14px;
    cursor: pointer;
    font-family: inherit;
    background: #fff;
    color: #2b2b2b;
    transition: background-color .15s, color .15s;
}
.eauth-btn:hover {
    background: #2b2b2b;
    color: #fff;
}
