.page {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.content {
    position: relative;
    z-index: var(--z-base);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-6);
    max-width: 520px;
    width: 100%;
}

.divider {
    width: 100%;
    max-width: 240px;
    height: 1px;
    margin-bottom: var(--space-8);
}

.divider-line {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(var(--primary-rgb), 0.25), rgba(var(--accent-rgb), 0.15), transparent);
    background-size: 200% 100%;
    animation: shimmer 5s ease-in-out infinite;
}

@media (max-width: 768px) {
    .content {
        padding: var(--space-5);
    }
}