/* PRONESTR login / register — Apple-inspired clean white */

.brand-pronestr-auth {
    --p-bg: #ffffff;
    --p-bg-alt: #f5f5f7;
    --p-text: #1d1d1f;
    --p-text-muted: #6e6e73;
    --p-border: #d2d2d7;
    --p-accent: #0f1a23;
    --p-accent-hover: #1a2832;
    background: var(--p-bg) !important;
    color: var(--p-text);
    min-height: 100vh;
}

.brand-pronestr-auth .pronestr-auth-bg,
.brand-pronestr-auth .pronestr-auth-orb,
.brand-pronestr-auth .pronestr-auth-grid {
    display: none !important;
}

.brand-pronestr-auth header {
    position: relative;
    z-index: 20;
    border-bottom: 1px solid var(--p-border) !important;
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: saturate(180%) blur(20px);
}

.brand-pronestr-auth .pronestr-auth-wordmark {
    font-weight: 700;
    letter-spacing: 0.06em;
    font-size: 1.2rem;
    color: var(--p-text) !important;
    -webkit-text-fill-color: var(--p-text);
    background: none;
}

.brand-pronestr-auth .pronestr-auth-main {
    position: relative;
    z-index: 10;
    min-height: calc(100vh - 73px);
}

.brand-pronestr-auth .pronestr-auth-main:not(.pronestr-auth-layout) {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem 3rem;
}

.brand-pronestr-auth .pronestr-auth-showcase {
    display: none;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 4rem;
    border-right: 1px solid var(--p-border);
    background: var(--p-bg-alt);
}

.brand-pronestr-auth .pronestr-auth-layout {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

@media (min-width: 1024px) {
    .brand-pronestr-auth .pronestr-auth-showcase {
        display: flex;
    }
    .brand-pronestr-auth .pronestr-auth-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        min-height: calc(100vh - 73px);
    }
}

.brand-pronestr-auth .pronestr-auth-showcase h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--p-text);
    letter-spacing: -0.03em;
}

.brand-pronestr-auth .pronestr-auth-showcase .accent-line {
    color: var(--p-text);
    font-weight: 700;
}

.brand-pronestr-auth .pronestr-auth-showcase > p {
    color: var(--p-text-muted) !important;
    line-height: 1.6;
}

.brand-pronestr-auth .pronestr-auth-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.brand-pronestr-auth .pronestr-auth-stat {
    padding: 1rem 1.15rem;
    border-radius: 12px;
    border: 1px solid var(--p-border);
    background: var(--p-bg);
    min-width: 110px;
    box-shadow: none;
}

.brand-pronestr-auth .pronestr-auth-stat strong {
    display: block;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--p-text);
}

.brand-pronestr-auth .pronestr-auth-stat span {
    font-size: 0.7rem;
    color: var(--p-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.brand-pronestr-auth .pronestr-auth-form-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex: 1;
    padding: 2rem 1.5rem;
    background: var(--p-bg);
}

.brand-pronestr-auth .panel-card {
    width: 100%;
    max-width: 28rem;
    background: var(--p-bg) !important;
    border: 1px solid var(--p-border) !important;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06) !important;
}

.brand-pronestr-auth .panel-card::before {
    display: none;
}

.brand-pronestr-auth .panel-card:hover {
    transform: none;
    border-color: var(--p-border) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08) !important;
}

.brand-pronestr-auth .panel-card h1 {
    color: var(--p-text) !important;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.brand-pronestr-auth .panel-card p,
.brand-pronestr-auth .panel-card label {
    color: var(--p-text-muted) !important;
}

.brand-pronestr-auth .panel-card input[type="text"],
.brand-pronestr-auth .panel-card input[type="password"],
.brand-pronestr-auth .panel-card input[type="email"] {
    background: var(--p-bg) !important;
    border-color: var(--p-border) !important;
    color: var(--p-text) !important;
    border-radius: 10px;
}

.brand-pronestr-auth .panel-card input::placeholder {
    color: #86868b;
}

.brand-pronestr-auth .btn-primary {
    background: var(--p-accent) !important;
    background-size: auto !important;
    animation: none !important;
    box-shadow: none !important;
    border: none;
    border-radius: 980px;
    color: #fff !important;
    font-weight: 500;
}

.brand-pronestr-auth .btn-primary:hover {
    background: var(--p-accent-hover) !important;
    box-shadow: none !important;
    transform: none;
}

.brand-pronestr-auth .link-accent {
    color: var(--p-accent);
}

.brand-pronestr-auth .link-accent:hover {
    color: var(--p-accent-hover);
}

.brand-pronestr-auth .input-focus:focus {
    border-color: var(--p-accent) !important;
    box-shadow: 0 0 0 3px rgba(15, 39, 68, 0.12);
}

.brand-pronestr-auth .checkbox-accent {
    accent-color: var(--p-accent);
}

.brand-pronestr-auth .btn-home {
    background: var(--p-text) !important;
    box-shadow: none;
    border-radius: 980px;
}

.brand-pronestr-auth .btn-home:hover {
    background: #333336 !important;
}

.brand-pronestr-auth .btn-outline-nav {
    border-color: var(--p-border) !important;
    color: var(--p-text) !important;
    background: var(--p-bg);
    border-radius: 980px;
}

.brand-pronestr-auth .btn-outline-nav:hover {
    background: var(--p-bg-alt);
}

.brand-pronestr-auth .auth-back-link {
    border-color: var(--p-border) !important;
    color: var(--p-text-muted) !important;
    background: var(--p-bg);
    border-radius: 980px;
}

.brand-pronestr-auth .auth-back-link:hover {
    background: var(--p-bg-alt);
}

.brand-pronestr-auth .panel-card .border-t {
    border-color: var(--p-border) !important;
}

.brand-pronestr-auth .pronestr-auth-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.85rem;
    border-radius: 980px;
    border: 1px solid var(--p-border);
    background: var(--p-bg-alt);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--p-text-muted);
    margin-bottom: 1.25rem;
}

.brand-pronestr-auth .pronestr-auth-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--p-accent);
    animation: none;
}
