/**
 * ATIKASS Form — Success Overlay
 */

.atkf-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(244,242,249,0.95);
    backdrop-filter: blur(6px);
    z-index: 1000;
    animation: atkfFadeIn 0.3s ease;
    padding: 20px;
}

@keyframes atkfFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.atkf-overlay__card {
    background: var(--atkf-white);
    border-radius: var(--atkf-radius-xl);
    padding: 48px 40px;
    text-align: center;
    box-shadow: var(--atkf-shadow-lg);
    max-width: 420px;
    width: 100%;
    animation: atkfScaleIn 0.35s var(--atkf-ease);
}

@keyframes atkfScaleIn {
    from { opacity: 0; transform: scale(0.92); }
    to   { opacity: 1; transform: scale(1); }
}

.atkf-overlay__icon { margin-bottom: 20px; }
.atkf-overlay__card h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--atkf-text);
}
.atkf-overlay__card p {
    color: var(--atkf-text-secondary);
    font-size: 0.92rem;
    margin-bottom: 28px;
    line-height: 1.6;
}

.atkf-overlay__back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--atkf-text-muted) !important;
    text-decoration: none !important;
    transition: var(--atkf-transition);
}
.atkf-overlay__back-link:hover,
.atkf-overlay__back-link:focus,
.atkf-overlay__back-link:active,
.atkf-overlay__back-link:visited {
    color: var(--atkf-primary) !important;
    text-decoration: none !important;
}
