:root {
    --sarua-bg: #edf3f7;
    --sarua-surface: rgba(255, 255, 255, 0.97);
    --sarua-ink: #0f172a;
    --sarua-muted: #617385;
    --sarua-line: rgba(15, 23, 42, 0.08);
    --sarua-brand-900: #0a3c58;
    --sarua-brand-800: #0c5678;
    --sarua-brand-700: #0d78a6;
    --sarua-brand-500: #17a8d8;
    --sarua-accent: #15b7a4;
    --sarua-soft: rgba(13, 120, 166, 0.08);
    --sarua-soft-line: rgba(13, 120, 166, 0.16);
    --sarua-success: #0f9f6e;
    --sarua-warning: #d97706;
    --sarua-danger: #dc2626;
    --sarua-shadow: 0 22px 60px rgba(15, 23, 42, 0.10);
    --sarua-shadow-soft: 0 16px 42px rgba(15, 23, 42, 0.08);
    --sarua-radius-xl: 28px;
    --sarua-radius-lg: 22px;
    --sarua-radius-md: 16px;
}

html,
body {
    min-height: 100%;
}

body.sarua-auth-page {
    margin: 0;
    background:
        radial-gradient(circle at top left, rgba(23, 168, 216, 0.12), transparent 34%),
        linear-gradient(180deg, #f8fbfd 0%, var(--sarua-bg) 100%);
    color: var(--sarua-ink);
    font-family: "Plus Jakarta Sans", "Source Sans Pro", system-ui, sans-serif;
}

.auth-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(360px, 1.02fr) minmax(420px, 0.98fr);
}

.auth-page-login .auth-shell {
    grid-template-columns: minmax(380px, 0.98fr) minmax(470px, 1.02fr);
}

.auth-brand-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 32px 34px 24px;
    overflow: hidden;
    color: #eef8ff;
    background:
        radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.20), transparent 30%),
        radial-gradient(circle at 86% 6%, rgba(21, 183, 164, 0.28), transparent 30%),
        linear-gradient(138deg, #09324b 0%, #0d5d80 48%, #0f7c79 100%);
}

.auth-brand-panel::before,
.auth-brand-panel::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.auth-brand-panel::before {
    width: 420px;
    height: 420px;
    top: -160px;
    right: -170px;
    background: rgba(255, 255, 255, 0.08);
}

.auth-brand-panel::after {
    width: 540px;
    height: 540px;
    left: -260px;
    bottom: -280px;
    background: rgba(255, 255, 255, 0.06);
}

.brand-topbar,
.brand-content,
.brand-footer {
    position: relative;
    z-index: 1;
}

.brand-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: inherit;
    text-decoration: none;
}

.brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.04em;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 14px 32px rgba(7, 26, 40, 0.18);
}

.brand-lockup small,
.brand-lockup strong {
    display: block;
}

.brand-lockup small {
    font-size: 13px;
    opacity: 0.82;
}

.brand-lockup strong {
    font-size: 15px;
    font-weight: 700;
}

.brand-chip {
    display: inline-flex;
    align-items: center;
    padding: 9px 13px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 12px;
    font-weight: 700;
}

.brand-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 560px;
    padding: 28px 0 18px;
}

.auth-page-login .brand-content {
    max-width: 500px;
    padding: 26px 0 8px;
}

.eyebrow {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    margin-bottom: 16px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.brand-content h1 {
    margin: 0 0 10px;
    max-width: 560px;
    font-size: clamp(2rem, 3.6vw, 3rem);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.auth-page-login .brand-content h1 {
    max-width: 480px;
    margin-bottom: 10px;
    font-size: clamp(1.95rem, 3vw, 2.6rem);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.brand-content > p {
    max-width: 520px;
    margin: 0 0 18px;
    color: rgba(238, 248, 255, 0.88);
    font-size: 14px;
    line-height: 1.68;
}

.auth-page-login .brand-content > p {
    max-width: 430px;
    margin-bottom: 18px;
    color: rgba(238, 248, 255, 0.76);
    font-size: 13px;
    line-height: 1.68;
}

.feature-grid {
    display: grid;
    gap: 10px;
}

.auth-page-login .feature-grid {
    display: none;
}

.feature-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 11px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 12px 32px rgba(4, 21, 33, 0.10);
    backdrop-filter: blur(8px);
}

.auth-page-login .feature-card {
    padding: 13px 15px;
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 10px 26px rgba(4, 21, 33, 0.09);
}

.feature-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 16px;
}

.feature-card h3 {
    margin: 0 0 4px;
    font-size: 14px;
    font-weight: 700;
}

.feature-card p {
    margin: 0;
    color: rgba(238, 248, 255, 0.84);
    font-size: 12.5px;
    line-height: 1.58;
}

.auth-page-login .feature-card p {
    color: rgba(238, 248, 255, 0.78);
}

.metrics-panel {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.metric-item {
    padding: 14px 14px 13px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.metric-item strong,
.metric-item span {
    display: block;
}

.metric-item strong {
    margin-bottom: 4px;
    font-size: 16px;
    line-height: 1.25;
}

.metric-item span {
    color: rgba(238, 248, 255, 0.82);
    font-size: 11px;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.feature-slider {
    --slider-view: 3;
    --slider-gap: 12px;
    margin-top: 18px;
    padding: 16px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.09);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(10px);
}

.auth-page-login .feature-slider {
    --slider-gap: 10px;
    margin-top: 14px;
    padding: 13px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.04));
    box-shadow: 0 10px 28px rgba(6, 19, 29, 0.10);
}

.feature-slider-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.feature-slider-head h3 {
    margin: 0 0 3px;
    font-size: 14px;
    font-weight: 800;
}

.auth-page-login .feature-slider-head h3 {
    font-size: 13px;
    letter-spacing: 0.01em;
}

.feature-slider-head p {
    margin: 0;
    color: rgba(238, 248, 255, 0.82);
    font-size: 11.5px;
    line-height: 1.55;
}

.auth-page-login .feature-slider-head p {
    max-width: 280px;
    color: rgba(238, 248, 255, 0.66);
    font-size: 10.5px;
}

.feature-slider-nav {
    display: flex;
    gap: 10px;
}

.auth-page-login .feature-slider-nav {
    gap: 8px;
}

.feature-slider-btn {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.92);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: 0.2s ease;
    outline: none;
    opacity: 0.86;
}

.auth-page-login .feature-slider-btn {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    font-size: 11px;
    opacity: 0.62;
}

.feature-slider-btn:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-1px);
    opacity: 1;
}

.feature-slider-btn:disabled {
    opacity: 0.38;
    cursor: default;
}

.feature-slider-track {
    overflow: hidden;
}

.feature-slider-slides {
    display: flex;
    gap: var(--slider-gap);
    transition: transform 0.58s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.feature-slide-card {
    flex: 0 0 calc((100% - (var(--slider-gap) * (var(--slider-view) - 1))) / var(--slider-view));
    min-height: 182px;
    padding: 16px 15px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.07));
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.auth-page-login .feature-slide-card {
    min-height: 154px;
    padding: 13px 12px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.04));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.feature-slide-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 12px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 16px;
}

.auth-page-login .feature-slide-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 9px;
    border-radius: 11px;
    font-size: 13px;
}

.feature-slide-value {
    display: inline-flex;
    margin-bottom: 8px;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.auth-page-login .feature-slide-value {
    margin-bottom: 6px;
    padding: 4px 7px;
    font-size: 9px;
}

.feature-slide-card h4 {
    margin: 0 0 7px;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 800;
}

.auth-page-login .feature-slide-card h4 {
    margin-bottom: 5px;
    font-size: 12.5px;
}

.feature-slide-card p {
    margin: 0;
    color: rgba(238, 248, 255, 0.88);
    font-size: 12.5px;
    line-height: 1.55;
}

.auth-page-login .feature-slide-card p {
    color: rgba(238, 248, 255, 0.72);
    font-size: 11.5px;
    line-height: 1.45;
}

.feature-slider-dots {
    display: flex;
    gap: 8px;
    margin-top: 14px;
}

.auth-page-login .feature-slider-dots {
    gap: 6px;
    margin-top: 10px;
}

.feature-slider-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
    cursor: pointer;
    transition: 0.2s ease;
}

.auth-page-login .feature-slider-dot {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.22);
}

.feature-slider-dot.is-active {
    width: 20px;
    background: #ffffff;
}

.auth-page-login .feature-slider-dot.is-active {
    width: 16px;
}

.brand-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    color: rgba(238, 248, 255, 0.82);
    font-size: 12px;
    line-height: 1.7;
}

.brand-footer p {
    max-width: 430px;
    margin: 0;
}

.auth-page-login .brand-footer {
    color: rgba(238, 248, 255, 0.66);
}

.auth-form-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 34px;
}

.auth-page-login .auth-form-panel {
    padding: 34px 42px 34px 30px;
}

.auth-form-wrap {
    width: min(486px, 100%);
}

.auth-page-register .auth-form-wrap {
    width: min(530px, 100%);
}

.auth-page-forgot-password .auth-form-wrap,
.auth-page-verify-email .auth-form-wrap,
.auth-page-reset-password .auth-form-wrap {
    width: min(500px, 100%);
}

.auth-page-login .auth-form-wrap {
    width: min(500px, 100%);
}

.auth-card-shell {
    padding: 32px 32px 26px;
    background: var(--sarua-surface);
    border-radius: 24px;
    border: 1px solid rgba(15, 23, 42, 0.07);
    box-shadow:
        0 24px 68px rgba(15, 23, 42, 0.08),
        0 2px 8px rgba(15, 23, 42, 0.03);
}

.auth-page-login .auth-card-shell {
    padding: 34px 34px 28px;
    border-radius: 26px;
    border-color: rgba(15, 23, 42, 0.07);
    box-shadow:
        0 28px 78px rgba(15, 23, 42, 0.09),
        0 2px 8px rgba(15, 23, 42, 0.03);
}

.auth-head {
    margin-bottom: 16px;
}

.auth-page-login .auth-head {
    margin-bottom: 14px;
}

.auth-head h2 {
    margin: 0;
    color: var(--sarua-ink);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.16;
}

.auth-page-login .auth-head h2 {
    font-size: 29px;
    line-height: 1.14;
    letter-spacing: -0.04em;
}

.auth-head p {
    margin: 8px 0 0;
    color: var(--sarua-muted);
    font-size: 13.5px;
    line-height: 1.64;
}

.auth-page-login .auth-head p {
    margin-top: 8px;
    max-width: 380px;
    font-size: 13.5px;
    line-height: 1.64;
}

.auth-head-compact {
    margin-bottom: 16px;
}

.auth-kicker {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 6px 11px;
    border-radius: 999px;
    background: rgba(13, 120, 166, 0.08);
    color: var(--sarua-brand-700);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.auth-page-login .auth-kicker {
    margin-bottom: 11px;
    background: rgba(13, 120, 166, 0.06);
    color: #0c678f;
}

.security-box,
.subtle-box {
    margin-bottom: 16px;
    padding: 11px 13px;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12.5px;
    line-height: 1.6;
}

.login-meta-note {
    margin: 0 0 18px;
    color: #677b8c;
    font-size: 11.5px;
    line-height: 1.5;
}

.security-box {
    border: 1px solid var(--sarua-soft-line);
    background: var(--sarua-soft);
    color: #0c638b;
    font-weight: 700;
}

.subtle-box {
    margin-top: 16px;
    border: 1px solid rgba(15, 23, 42, 0.07);
    background: rgba(248, 251, 253, 0.92);
    color: #50677a;
}

.suite-meta-note {
    margin: -2px 0 18px;
    color: #6b7f8f;
    font-size: 11.75px;
    line-height: 1.58;
}

.form-group {
    margin-bottom: 16px;
}

.auth-page-login .form-group {
    margin-bottom: 17px;
}

.form-label {
    display: inline-block;
    margin-bottom: 7px;
    color: #314456;
    font-size: 12.5px;
    font-weight: 700;
}

.auth-page-login .form-label {
    color: #2f4355;
    font-size: 12.5px;
    letter-spacing: 0.01em;
}

.input-wrap {
    position: relative;
}

.icon-left {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: rgba(15, 23, 42, 0.42);
    font-size: 15px;
    pointer-events: none;
}

.form-control {
    width: 100%;
    height: 52px;
    padding-left: 44px;
    padding-right: 44px;
    border-radius: 15px;
    border: 1px solid rgba(15, 23, 42, 0.10);
    background: #fbfdff;
    color: var(--sarua-ink);
    font-size: 14px;
    transition: 0.18s ease;
    box-shadow: none !important;
}

.auth-page-login .form-control {
    height: 54px;
    border-radius: 16px;
    border-color: rgba(15, 23, 42, 0.10);
    background: #fbfdff;
}

.form-control:focus {
    border-color: rgba(12, 103, 143, 0.34);
    box-shadow: 0 0 0 4px rgba(12, 103, 143, 0.10) !important;
    background: #ffffff;
}

.auth-page-login .form-control:focus {
    border-color: rgba(12, 103, 143, 0.34);
    box-shadow: 0 0 0 4px rgba(12, 103, 143, 0.10) !important;
    background: #ffffff;
}

.btn-eye {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: rgba(15, 23, 42, 0.52);
    display: grid;
    place-items: center;
    cursor: pointer;
}

.btn-eye:hover {
    background: rgba(15, 23, 42, 0.04);
}

.auth-page-login .btn-eye {
    color: rgba(15, 23, 42, 0.42);
}

.row-inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 4px;
    margin-bottom: 18px;
}

.auth-page-login .row-inline {
    margin-top: 4px;
    margin-bottom: 20px;
}

.help-link,
.auth-links-row a,
.btn-link-auth {
    color: var(--sarua-brand-700);
    text-decoration: none;
    font-weight: 800;
}

.help-link {
    font-size: 13px;
}

.auth-page-login .help-link {
    font-size: 12.5px;
    font-weight: 700;
}

.btn-auth,
.btn-outline-auth,
.btn-link-auth {
    height: 52px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 800;
}

.auth-page-login .btn-auth {
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(135deg, #0b6f98, #1188b4 56%, #18a394 100%);
    box-shadow: 0 18px 34px rgba(11, 111, 152, 0.18);
}

.btn-auth {
    color: #ffffff;
    border: 0;
    background: linear-gradient(135deg, #0b6f98, #1188b4 56%, #18a394 100%);
    box-shadow: 0 18px 34px rgba(11, 111, 152, 0.18);
}

.btn-auth:hover,
.btn-auth:focus {
    color: #ffffff;
}

.btn-outline-auth {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: #203447;
}

.btn-link-auth {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    background: transparent;
    border: 0;
}

.auth-inline-note {
    margin: 14px 0 0;
    color: var(--sarua-muted);
    font-size: 12.5px;
    line-height: 1.6;
}

.auth-page-login .auth-inline-note {
    margin-top: 12px;
    color: #6f8292;
    font-size: 11.5px;
}

.state-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    padding: 18px;
    border-radius: 20px;
    background: var(--sarua-soft);
    border: 1px solid var(--sarua-soft-line);
}

.state-icon {
    width: 44px;
    height: 44px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.74);
    color: var(--sarua-brand-700);
    font-size: 16px;
}

.state-card strong {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

.state-card p {
    margin: 0;
    color: #4d6577;
    font-size: 12.75px;
    line-height: 1.62;
}

.detail-list {
    display: grid;
    gap: 10px;
    margin: 18px 0 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(248, 251, 253, 0.95);
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.detail-item span {
    color: var(--sarua-muted);
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.detail-item strong {
    font-size: 12.75px;
    text-align: right;
}

.dual-actions,
.auth-links-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 18px;
}

.auth-links-row {
    color: var(--sarua-muted);
    font-size: 12.5px;
}

.auth-page-register .auth-links-row,
.auth-page-forgot-password .auth-links-row,
.auth-page-reset-password .auth-links-row {
    padding-top: 16px;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.auth-page-login .auth-links-row {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    font-size: 12.5px;
}

.state-success {
    background: rgba(15, 159, 110, 0.08);
    border-color: rgba(15, 159, 110, 0.16);
}

.state-success .state-icon {
    color: var(--sarua-success);
}

.state-warning {
    background: rgba(217, 119, 6, 0.08);
    border-color: rgba(217, 119, 6, 0.16);
}

.state-warning .state-icon {
    color: var(--sarua-warning);
}

.state-danger {
    background: rgba(220, 38, 38, 0.08);
    border-color: rgba(220, 38, 38, 0.16);
}

.state-danger .state-icon {
    color: var(--sarua-danger);
}

.auth-page-bootstrap .auth-shell {
    grid-template-columns: minmax(380px, 0.98fr) minmax(470px, 1.02fr);
}

.auth-page-bootstrap .brand-content {
    max-width: 500px;
    padding: 22px 0 8px;
}

.auth-page-bootstrap .brand-content h1 {
    max-width: 470px;
    font-size: clamp(1.95rem, 3vw, 2.7rem);
    line-height: 1.1;
}

.auth-page-bootstrap .brand-content > p {
    max-width: 440px;
    margin-bottom: 20px;
    color: rgba(238, 248, 255, 0.78);
}

.bootstrap-status-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    padding: 18px 18px 17px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.bootstrap-status-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(13, 120, 166, 0.10);
    color: var(--sarua-brand-700);
    font-size: 18px;
}

.bootstrap-status-copy strong {
    display: block;
    margin-bottom: 5px;
    font-size: 15px;
    font-weight: 700;
    color: var(--sarua-ink);
}

.bootstrap-status-copy p {
    margin: 0;
    color: var(--sarua-muted);
    font-size: 13px;
    line-height: 1.66;
}

.bootstrap-spinner {
    width: 1rem;
    height: 1rem;
    color: var(--sarua-brand-700);
}

.bootstrap-status-card.is-loading {
    border-color: rgba(13, 120, 166, 0.14);
}

.bootstrap-status-card.is-ready {
    border-color: rgba(15, 159, 110, 0.20);
    background: rgba(244, 252, 248, 0.96);
}

.bootstrap-status-card.is-ready .bootstrap-status-icon {
    background: rgba(15, 159, 110, 0.12);
    color: var(--sarua-success);
}

.bootstrap-status-card.is-blocked {
    border-color: rgba(217, 119, 6, 0.20);
    background: rgba(255, 250, 240, 0.96);
}

.bootstrap-status-card.is-blocked .bootstrap-status-icon {
    background: rgba(217, 119, 6, 0.12);
    color: var(--sarua-warning);
}

.bootstrap-status-card.is-error,
.bootstrap-status-card.is-unavailable {
    border-color: rgba(220, 38, 38, 0.18);
    background: rgba(255, 247, 247, 0.96);
}

.bootstrap-status-card.is-error .bootstrap-status-icon,
.bootstrap-status-card.is-unavailable .bootstrap-status-icon {
    background: rgba(220, 38, 38, 0.10);
    color: var(--sarua-danger);
}

.bootstrap-detail-list {
    margin-top: 18px;
}

.bootstrap-actions {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.bootstrap-actions .btn[hidden] {
    display: none !important;
}

@media (max-width: 1199.98px) {
    .auth-shell {
        grid-template-columns: 1fr;
    }

    .auth-form-panel {
        padding-top: 0;
    }

    .feature-slider {
        --slider-view: 2;
    }

    .auth-page-login .auth-form-panel {
        padding: 0 34px 34px;
    }

    .auth-page-bootstrap .auth-shell {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .auth-brand-panel,
    .auth-form-panel {
        padding: 20px;
    }

    .auth-card-shell {
        padding: 24px 20px 22px;
    }

    .feature-slider {
        --slider-view: 1;
        padding: 16px;
    }

    .feature-slider-head,
    .brand-topbar,
    .brand-footer,
    .detail-item,
    .dual-actions,
    .auth-links-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .metrics-panel,
    .auth-panel-note {
        grid-template-columns: 1fr;
    }

    .detail-item strong {
        text-align: left;
    }

    .auth-page-login .brand-content {
        max-width: 100%;
        padding: 18px 0 8px;
    }

    .auth-page-login .brand-content h1 {
        font-size: clamp(1.8rem, 8vw, 2.25rem);
    }

    .auth-page-login .auth-form-panel {
        padding: 0 20px 20px;
    }

    .auth-page-login .auth-card-shell {
        padding: 28px 20px 22px;
    }

    .bootstrap-status-card {
        padding: 16px;
    }
}
