/* ═══════════════════════════════════════════════════════════════
   Paynt Design System — Login Page
   ═══════════════════════════════════════════════════════════════ */

.paynt-login {
    display: flex;
    min-height: 100vh;
    background: var(--bg-page);
}

/* ─── Side Panel ─── */
.paynt-login__side {
    flex: 1;
    background: linear-gradient(135deg, #004578 0%, #0078D4 100%);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xxxxl);
    position: relative;
    overflow: hidden;
}

.paynt-login__side::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.paynt-login__side-content {
    position: relative;
    z-index: 1;
    max-width: 440px;
}

.paynt-login__side-logo {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-l);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-xxl);
}

.paynt-login__side-logo svg {
    width: 28px;
    height: 28px;
}

.paynt-login__side-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 36px;
    margin-bottom: var(--space-l);
}

.paynt-login__side-desc {
    font-size: 16px;
    line-height: 24px;
    opacity: 0.85;
    margin-bottom: var(--space-xxxl);
}

.paynt-login__side-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-l);
}

.paynt-login__side-feature {
    display: flex;
    align-items: center;
    gap: var(--space-m);
    font-size: 14px;
    line-height: 20px;
    opacity: 0.9;
}

.paynt-login__side-feature-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-m);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.paynt-login__side-feature-icon svg {
    width: 18px;
    height: 18px;
}

/* ─── Form Container ─── */
.paynt-login__form-container {
    width: 480px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xxxxl) var(--space-xxxl);
    background: var(--bg-surface);
}

.paynt-login__form-wrapper {
    width: 100%;
    max-width: 360px;
}

/* ─── Form Header ─── */
.paynt-login__form-header {
    margin-bottom: var(--space-xxxl);
}

.paynt-login__form-brand {
    display: flex;
    align-items: center;
    gap: var(--space-s);
    margin-bottom: var(--space-xxl);
}

.paynt-login__form-brand-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary);
}

.paynt-login__form-brand-icon svg {
    width: 24px;
    height: 24px;
}

.paynt-login__form-brand-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--brand-primary);
    line-height: 28px;
}

.paynt-login__form-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.paynt-login__form-subtitle {
    font-size: 14px;
    line-height: 20px;
    color: var(--text-secondary);
}

/* ─── Footer ─── */
.paynt-login__footer {
    margin-top: var(--space-xxxl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border-divider);
    text-align: center;
}

.paynt-login__footer-company {
    font-size: 12px;
    line-height: 18px;
    color: var(--text-tertiary);
}

.paynt-login__footer-company strong {
    color: var(--text-secondary);
    font-weight: 600;
}

/* ─── Responsive ─── */

/* ≤ 1023px */
@media (max-width: 1023px) {
    .paynt-login__side {
        display: none;
    }

    .paynt-login__form-container {
        width: 100%;
        flex: 1;
    }
}

/* ≤ 639px */
@media (max-width: 639px) {
    .paynt-login__form-container {
        padding: var(--space-xxl) var(--space-l);
    }

    .paynt-login__form-wrapper {
        max-width: 100%;
    }
}
