/* auth/login — extracted from blade inline styles */
* { box-sizing: border-box; }

.lp-section {
    min-height: 88vh;
    display: flex;
    align-items: stretch;
    font-family: 'Inter', sans-serif;
    background: #f0f2f8;
    padding: 40px 16px;
}

.lp-wrap {
    display: flex;
    width: 100%;
    max-width: 960px;
    margin: auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(13,148,136,0.14), 0 8px 32px rgba(0,0,0,0.09);
    animation: cardIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes cardIn {
    from { opacity: 0; transform: translateY(28px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ─── Left Panel ─── */
.lp-left {
    flex: 0 0 42%;
    background: linear-gradient(145deg, #134e4a 0%, #0d9488 55%, #14b8a6 100%);
    padding: 52px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}
.lp-left::before {
    content: '';
    position: absolute;
    width: 340px; height: 340px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    top: -80px; right: -100px;
    animation: slowSpin 20s linear infinite;
}
.lp-left::after {
    content: '';
    position: absolute;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    bottom: -40px; left: -50px;
    animation: slowSpin 28s linear infinite reverse;
}
@keyframes slowSpin { to { transform: rotate(360deg); } }

.lp-left-logo {
    display: flex; align-items: center; gap: 12px;
    z-index: 1;
}
.lp-left-logo-icon {
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(10px);
}
.lp-left-logo-icon svg { width: 22px; height: 22px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.lp-left-logo-text { font-size: 1rem; font-weight: 700; color: #fff; letter-spacing: 0.3px; }
.lp-left-logo-text span { opacity: 0.75; font-weight: 400; display: block; font-size: 0.75rem; }

.lp-left-body { z-index: 1; }
.lp-left-headline {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin: 0 0 14px;
    letter-spacing: -0.5px;
}
.lp-left-headline em { font-style: normal; color: #99f6e4; }
.lp-left-desc {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.65;
    margin: 0 0 30px;
}

.lp-trust-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.lp-trust-item {
    display: flex; align-items: center; gap: 12px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 11px 14px;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: background 0.2s;
}
.lp-trust-item:hover { background: rgba(255,255,255,0.13); }
.lp-trust-icon {
    width: 32px; height: 32px; flex-shrink: 0;
    background: rgba(255,255,255,0.15);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
}
.lp-trust-icon svg { width: 16px; height: 16px; stroke: #99f6e4; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.lp-trust-text p { margin: 0; font-size: 0.8rem; font-weight: 600; color: #fff; }
.lp-trust-text span { font-size: 0.72rem; color: rgba(255,255,255,0.6); }

.lp-left-footer { z-index: 1; }
.lp-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.3px;
    border: 1px solid rgba(255,255,255,0.2);
}
.lp-badge::before { content: '🔒'; font-size: 0.8rem; }

/* ─── Right Panel ─── */
.lp-right {
    flex: 1;
    background: #fff;
    padding: 52px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lp-right-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 6px;
    letter-spacing: -0.4px;
}
.lp-right-sub {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0 0 32px;
    line-height: 1.5;
}

.lp-alert {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    border: 1px solid #fca5a5;
    border-radius: 12px;
    color: #991b1b;
    padding: 12px 16px;
    margin-bottom: 24px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex; align-items: flex-start; gap: 10px;
    animation: fadeDown 0.3s ease;
}
.lp-alert svg { flex-shrink: 0; width: 16px; height: 16px; margin-top: 1px; stroke: #ef4444; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.lp-alert.lp-alert-success {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    border-color: #86efac;
    color: #166534;
}
.lp-alert.lp-alert-success svg { stroke: #16a34a; }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }

.lp-form-group { margin-bottom: 20px; }
.lp-label-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.lp-label {
    font-size: 0.83rem;
    font-weight: 600;
    color: #374151;
    letter-spacing: 0.2px;
}
.lp-forgot {
    font-size: 0.78rem;
    font-weight: 500;
    color: #0d9488;
    text-decoration: none;
    transition: color 0.2s;
}
.lp-forgot:hover { color: #0f766e; text-decoration: underline; }

.lp-input-wrap { position: relative; }
.lp-input-icon {
    position: absolute;
    left: 13px; top: 50%; transform: translateY(-50%);
    pointer-events: none;
}
.lp-input-icon svg { width: 17px; height: 17px; stroke: #9ca3af; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: stroke 0.2s; }
.lp-input-toggle {
    position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
    background: none; border: none; padding: 4px; cursor: pointer;
    color: #9ca3af; transition: color 0.2s; display: flex; align-items: center;
}
.lp-input-toggle:hover { color: #6b7280; }
.lp-input-toggle svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.lp-input {
    width: 100%;
    padding: 12px 42px;
    border: 1.5px solid #e5e7eb;
    border-radius: 11px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #1f2937;
    background: #f9fafb;
    transition: all 0.2s ease;
    outline: none;
}
.lp-input:focus {
    border-color: #0d9488;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(13,148,136,0.11);
}
.lp-input-wrap:focus-within .lp-input-icon svg { stroke: #0d9488; }

.lp-remember {
    display: flex; align-items: center; gap: 9px;
    font-size: 0.845rem;
    color: #4b5563;
    cursor: pointer;
    margin-bottom: 24px;
    user-select: none;
}
.lp-remember input[type="checkbox"] {
    width: 16px; height: 16px;
    accent-color: #0d9488;
    cursor: pointer;
    flex-shrink: 0;
}

    button.lp-btn[type="submit"] {
        width: 100%;
        padding: 14.5px;
        background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
        color: #fff;
        font-family: inherit;
        font-size: 0.95rem;
        font-weight: 600;
        border: none;
        border-radius: 12px;
        cursor: pointer;
        letter-spacing: 0.3px;
        display: flex; align-items: center; justify-content: center; gap: 8px;
        box-shadow: 0 6px 20px rgba(20,184,166,0.3);
        transition: all 0.25s ease;
        text-transform: none;
        float: none;
        height: auto;
    }
    button.lp-btn[type="submit"]:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(20,184,166,0.4); background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%); }
    button.lp-btn[type="submit"]:active { transform: translateY(0); }
    button.lp-btn[type="submit"] svg { width: 17px; height: 17px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.lp-divider {
    text-align: center; color: #9ca3af;
    margin: 24px 0; font-size: 0.8rem;
    position: relative;
}
.lp-divider::before, .lp-divider::after {
    content: ''; position: absolute; top: 50%;
    width: 43%; height: 1px; background: #e5e7eb;
}
.lp-divider::before { left: 0; }
.lp-divider::after { right: 0; }

.lp-register-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%;
    padding: 13px;
    background: transparent;
    border: 1.5px solid #e5e7eb;
    border-radius: 11px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    text-decoration: none;
    transition: all 0.2s ease;
}
.lp-register-btn:hover {
    background: #f0fdfa;
    border-color: #0d9488;
    color: #0d9488;
    text-decoration: none;
}
.lp-register-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* .social-login-* styles now live in css/websnp-design.css, shared with checkout pages */

/* Responsive */
@media (max-width: 700px) {
    .lp-left { display: none; }
    .lp-wrap { border-radius: 20px; }
    .lp-right { padding: 36px 24px; }
}
@media (max-width: 420px) {
    .social-login-row { flex-direction: column; }
}

@keyframes spin { to { transform: rotate(360deg); } }

