/* ============================================================================
   CSN auth pages — brand overrides + maritime globe backdrop
   Shared by Login.aspx, ForgotPassword.aspx, ResetPassword.aspx.
   Load AFTER assets/css/app.min.css. Möller corporate identity (gold/navy).
   ========================================================================== */
:root {
    --csn-gold: #bf9b5e;
    --csn-gold-dark: #a8884f;
    --csn-navy: #10233f;
    --theme-primary: #bf9b5e;
    --theme-primary-rgb: 191, 155, 94;
    --theme-link-color: #a8884f;
    --theme-link-color-rgb: 168, 136, 79;
    --theme-link-hover-color: #8a6c32;
    --theme-focus-ring-color: rgba(191, 155, 94, 0.25);
}
.btn-primary {
    --theme-btn-color: #10233f;
    --theme-btn-hover-color: #10233f;
    --theme-btn-active-color: #10233f;
    --theme-btn-hover-bg: #a8884f;
    --theme-btn-active-bg: #a8884f;
    --theme-btn-hover-border-color: #a8884f;
    --theme-btn-active-border-color: #a8884f;
    letter-spacing: 0.02em;
}
.form-check-input:checked {
    background-color: var(--csn-gold);
    border-color: var(--csn-gold);
}
/* maritime backdrop */
body {
    background: radial-gradient(ellipse 90% 78% at 50% 40%, #1c3553 0%, #0d1826 47%, #060b13 100%) fixed !important;
    min-height: 100vh;
}
.globe-scene {
    position: fixed;
    left: 50%;
    top: 42%;
    transform: translate(-50%, -50%);
    width: min(150vh, 92vw);
    height: min(150vh, 92vw);
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
    perspective: 1500px;
}
.globe-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}
@media (prefers-reduced-motion: reduce) {
    .globe-canvas { /* JS renders a single static frame */ }
}
.auth-box {
    position: relative;
    z-index: 1;
    overflow: visible !important;
    padding-top: 40px;
    padding-bottom: 40px;
}
.auth-box .card {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(191, 155, 94, 0.18);
}
.csn-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--csn-gold);
}
.csn-wordmark {
    font-family: 'Space Grotesk', 'Jost', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1;
    letter-spacing: 0.07em;
    color: var(--csn-navy);
    margin-top: 6px;
}
.csn-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(191, 155, 94, 0.45), transparent);
    margin: 1.25rem 0 1.5rem;
}
.csn-foot-copy {
    color: rgba(244, 239, 230, 0.55) !important;
}
.csn-foot-copy .fw-semibold {
    color: rgba(244, 239, 230, 0.8);
}
.csn-pw-toggle {
    border: var(--theme-border-width) solid var(--theme-border-color);
    border-left: 0;
    background: var(--theme-secondary-bg);
    color: var(--theme-secondary-color);
    padding: 0 0.85rem;
}
.csn-pw-toggle:hover {
    color: var(--csn-gold-dark);
}
