.email-confirm-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(217, 217, 217, 0.62);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}
.email-confirm-overlay.active {
    display: flex;
}
.email-confirm-modal {
    background: #ffffff;
    border-radius: 12px;
    padding: 36px 40px 32px;
    max-width: 420px;
    width: calc(100% - 32px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    text-align: center;
    animation: modalIn 0.22s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes modalIn {
    from { opacity: 0; transform: translateY(12px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.email-confirm-modal h2 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 12px;
}
.email-confirm-modal p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 28px;
}
.email-confirm-close-btn {
    display: inline-block;
    padding: 11px 36px;
    border: 1.5px solid #c8c8c8;
    border-radius: 50px;
    background: #fff;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: background 0.18s, border-color 0.18s;
}
.email-confirm-close-btn:hover {
    background: #f5f5f5;
    border-color: #aaa;
}

.email-confirmed-banner {
    display: none;
    position: fixed;
    top: 16px;
    left: 0;
    right: 0;
    z-index: 1100;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    border-radius: 10px;
    padding: 14px 20px;
    margin: 0 auto;
    width: calc(100% - 32px);
    max-width: 480px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    animation: bannerSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.email-confirmed-banner.visible {
    display: flex;
}
@keyframes bannerSlideIn {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}
.email-confirmed-banner .banner-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
}
.email-confirmed-banner .banner-text {
    font-size: 14px;
    color: #1a1a2e;
    font-weight: 500;
    line-height: 1.45;
}
