:root {
    --auth-bg: #07191d;
    --auth-bg-deep: #041014;
    --auth-panel: rgba(255, 255, 255, .975);
    --auth-text: #10252b;
    --auth-muted: #66777d;
    --auth-line: #d9e1e3;
    --auth-accent: #08a99e;
    --auth-accent-dark: #08788a;
    --auth-navy: #073a55;
    --auth-danger: #c24141;
    --auth-success: #177a60;
    --auth-shadow: 0 32px 90px rgba(2, 22, 29, .22);
}

* {
    box-sizing: border-box;
}

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

body.deper-auth-body {
    font-family: "Figtree", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #edf2f3;
    color: var(--auth-text);
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
}

.deper-auth-shell {
    min-height: 100vh;
}

.deper-auth-grid {
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(440px, .92fr) minmax(560px, 1.08fr);
}

.deper-auth-grid-register {
    grid-template-columns: minmax(560px, 1.08fr) minmax(500px, .92fr);
}

.deper-auth-form-side {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    padding: 48px clamp(28px, 5vw, 82px);
    background:
        radial-gradient(circle at 5% 5%, rgba(8, 169, 158, .07), transparent 26%),
        #f3f6f7;
}

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

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

.deper-auth-logo-link {
    width: 142px;
    height: 118px;
    display: block;
    margin: 0 auto 20px;
    text-decoration: none;
}

.deper-auth-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.deper-auth-heading {
    text-align: center;
    margin-bottom: 30px;
}

.deper-auth-eyebrow {
    display: inline-flex;
    padding: 7px 11px;
    border: 1px solid rgba(8, 120, 138, .18);
    border-radius: 999px;
    color: var(--auth-accent-dark);
    background: rgba(8, 169, 158, .065);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.deper-auth-heading h1 {
    margin: 16px 0 10px;
    color: #0d2b33;
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.03;
    letter-spacing: -.045em;
    font-weight: 800;
}

.deper-auth-heading p {
    max-width: 520px;
    margin: 0 auto;
    color: var(--auth-muted);
    font-size: 15px;
    line-height: 1.65;
}

.deper-auth-alert {
    display: grid;
    gap: 3px;
    margin-bottom: 20px;
    padding: 13px 15px;
    border-radius: 14px;
    font-size: 13px;
    line-height: 1.45;
}

.deper-auth-alert-success {
    color: var(--auth-success);
    background: #eaf8f3;
    border: 1px solid #c6eee1;
}

.deper-auth-alert-error {
    color: var(--auth-danger);
    background: #fff0f0;
    border: 1px solid #ffd6d6;
}

.deper-auth-form {
    display: grid;
    gap: 18px;
}

.deper-auth-field {
    display: grid;
    gap: 8px;
}

.deper-auth-field-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.deper-auth-field-grid > div {
    display: grid;
    gap: 8px;
}

.deper-auth-field label,
.deper-auth-label-row label {
    color: #1e343a;
    font-size: 13px;
    font-weight: 700;
}

.deper-auth-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.deper-auth-label-row a {
    color: var(--auth-accent-dark);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.deper-auth-label-row a:hover,
.deper-auth-switch a:hover {
    text-decoration: underline;
}

.deper-auth-input-wrap {
    position: relative;
}

.deper-auth-input-icon {
    position: absolute;
    inset: 50% auto auto 16px;
    width: 20px;
    height: 20px;
    color: #5f7c82;
    transform: translateY(-50%);
    pointer-events: none;
}

.deper-auth-input-icon svg {
    width: 100%;
    height: 100%;
}

.deper-auth-input-wrap input {
    width: 100%;
    height: 56px;
    padding: 0 16px 0 50px;
    border: 1px solid #cdd8da;
    border-radius: 13px;
    outline: none;
    color: #142a30;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 5px 15px rgba(16, 37, 43, .035);
    font: inherit;
    font-size: 14px;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.deper-auth-input-wrap input::placeholder {
    color: #9ba9ad;
}

.deper-auth-input-wrap input:focus {
    border-color: var(--auth-accent);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(8, 169, 158, .105), 0 10px 24px rgba(16, 37, 43, .06);
}

.deper-auth-check {
    width: max-content;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #5f7075;
    font-size: 13px;
    cursor: pointer;
    user-select: none;
}

.deper-auth-check input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.deper-auth-check-box {
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    border: 1px solid #c8d3d5;
    border-radius: 5px;
    background: #fff;
}

.deper-auth-check input:checked + .deper-auth-check-box {
    border-color: var(--auth-accent);
    background: var(--auth-accent);
}

.deper-auth-check input:checked + .deper-auth-check-box::after {
    content: "";
    width: 8px;
    height: 4px;
    margin-top: -2px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
}

.deper-auth-submit {
    width: 100%;
    min-height: 57px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 3px;
    border: 0;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(120deg, #08aa9e, #08758d 58%, #063c5a);
    box-shadow: 0 16px 34px rgba(6, 117, 141, .22);
    cursor: pointer;
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .01em;
    transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
}

.deper-auth-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 42px rgba(6, 117, 141, .3);
    filter: saturate(1.08);
}

.deper-auth-submit:active {
    transform: translateY(0);
}

.deper-auth-submit svg {
    width: 19px;
    height: 19px;
}

.deper-auth-switch {
    margin: 24px 0 0;
    text-align: center;
    color: #718085;
    font-size: 13px;
}

.deper-auth-switch a {
    margin-left: 4px;
    color: var(--auth-accent-dark);
    font-weight: 800;
    text-decoration: none;
}

.deper-auth-footnote {
    margin: 27px 0 0;
    text-align: center;
    color: #9aa6a9;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .075em;
    text-transform: uppercase;
}

.deper-auth-visual-side {
    min-height: 100vh;
    position: relative;
    display: grid;
    align-items: center;
    overflow: hidden;
    padding: clamp(48px, 7vw, 100px);
    color: #f4ffff;
    background:
        radial-gradient(circle at 78% 14%, rgba(23, 226, 201, .18), transparent 26%),
        radial-gradient(circle at 15% 85%, rgba(21, 124, 153, .25), transparent 35%),
        linear-gradient(145deg, #06181c 0%, #07343c 48%, #06253a 100%);
}

.deper-auth-visual-side::before,
.deper-auth-visual-side::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(153, 255, 240, .085);
    transform: rotate(28deg);
}

.deper-auth-visual-side::before {
    width: 480px;
    height: 480px;
    top: -210px;
    right: -145px;
    border-radius: 112px;
}

.deper-auth-visual-side::after {
    width: 300px;
    height: 300px;
    left: -125px;
    bottom: -115px;
    border-radius: 78px;
}

.deper-auth-visual-glow {
    position: absolute;
    inset: auto auto 12% 22%;
    width: 480px;
    height: 300px;
    border-radius: 50%;
    background: rgba(1, 224, 194, .09);
    filter: blur(80px);
}

.deper-auth-visual-content {
    position: relative;
    z-index: 2;
    width: min(100%, 680px);
    margin: 0 auto;
}

.deper-auth-visual-kicker {
    color: #6df1dc;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
}

.deper-auth-visual-content h2 {
    margin: 18px 0 18px;
    max-width: 650px;
    color: #f6ffff;
    font-size: clamp(42px, 5.3vw, 74px);
    line-height: .98;
    letter-spacing: -.055em;
    font-weight: 700;
}

.deper-auth-visual-content > p {
    max-width: 600px;
    margin: 0;
    color: rgba(226, 246, 247, .7);
    font-size: 16px;
    line-height: 1.75;
}

.deper-auth-runtime-card,
.deper-auth-console-card {
    margin-top: 42px;
    border: 1px solid rgba(194, 255, 245, .13);
    border-radius: 23px;
    background: rgba(3, 21, 28, .58);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .26);
    backdrop-filter: blur(18px);
}

.deper-auth-runtime-card {
    padding: 24px;
}

.deper-auth-runtime-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.deper-auth-runtime-top > div {
    display: grid;
    gap: 5px;
}

.deper-auth-runtime-label {
    color: rgba(199, 243, 239, .55);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .13em;
}

.deper-auth-runtime-top strong {
    font-size: 16px;
}

.deper-auth-online-dot {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #82f7c7;
    font-size: 12px;
    font-weight: 700;
}

.deper-auth-online-dot::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #32e7a5;
    box-shadow: 0 0 0 5px rgba(50, 231, 165, .11);
}

.deper-auth-pipeline {
    display: grid;
    grid-template-columns: 1fr 28px 1fr 28px 1fr;
    align-items: center;
    gap: 5px;
    margin-top: 26px;
}

.deper-auth-pipeline-item {
    min-height: 116px;
    display: grid;
    align-content: center;
    gap: 12px;
    padding: 16px;
    border: 1px solid rgba(196, 255, 246, .09);
    border-radius: 16px;
    background: rgba(255, 255, 255, .03);
}

.deper-auth-pipeline-item > span {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    color: #8eb7b8;
    background: rgba(255, 255, 255, .055);
    font-size: 10px;
    font-weight: 800;
}

.deper-auth-pipeline-item strong,
.deper-auth-pipeline-item small {
    display: block;
}

.deper-auth-pipeline-item strong {
    font-size: 12px;
}

.deper-auth-pipeline-item small {
    margin-top: 5px;
    color: rgba(221, 245, 244, .52);
    font-size: 10px;
}

.deper-auth-pipeline-item.is-complete > span,
.deper-auth-pipeline-item.is-active > span {
    color: #07272b;
    background: #56e8cf;
}

.deper-auth-pipeline-item.is-active {
    border-color: rgba(86, 232, 207, .3);
    background: rgba(86, 232, 207, .075);
}

.deper-auth-pipeline-line {
    height: 1px;
    background: linear-gradient(90deg, rgba(86, 232, 207, .16), #56e8cf, rgba(86, 232, 207, .16));
}

.deper-auth-quote {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 10px;
    margin-top: 26px;
    color: rgba(226, 246, 247, .65);
}

.deper-auth-quote > span {
    color: #5ce5d0;
    font-family: Georgia, serif;
    font-size: 42px;
    line-height: .9;
}

.deper-auth-quote p {
    margin: 0;
    max-width: 560px;
    font-size: 13px;
    line-height: 1.6;
}

.deper-auth-console-card {
    overflow: hidden;
}

.deper-auth-console-bar {
    height: 44px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 17px;
    border-bottom: 1px solid rgba(194, 255, 245, .09);
    background: rgba(0, 0, 0, .18);
}

.deper-auth-console-bar > span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .18);
}

.deper-auth-console-bar > span:first-child {
    background: #ff7c76;
}

.deper-auth-console-bar > span:nth-child(2) {
    background: #efca65;
}

.deper-auth-console-bar > span:nth-child(3) {
    background: #56e8a8;
}

.deper-auth-console-bar small {
    margin-left: auto;
    color: rgba(215, 240, 239, .4);
    font-size: 9px;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.deper-auth-console-body {
    display: grid;
    gap: 14px;
    padding: 25px;
    color: rgba(225, 248, 246, .72);
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 12px;
}

.deper-auth-console-body p {
    margin: 0;
}

.deper-auth-console-body .prompt {
    color: #6be9d4;
}

.deper-auth-console-body .ok {
    color: #5ce9a4;
}

.deper-auth-console-body .is-live {
    color: #fff;
}

.deper-auth-console-body .pulse {
    width: 8px;
    height: 8px;
    display: inline-block;
    margin-right: 7px;
    border-radius: 999px;
    background: #5ce9a4;
    box-shadow: 0 0 0 6px rgba(92, 233, 164, .1);
}

.deper-auth-capabilities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 11px;
    margin-top: 18px;
}

.deper-auth-capabilities > div {
    display: grid;
    gap: 5px;
    padding: 14px;
    border: 1px solid rgba(194, 255, 245, .09);
    border-radius: 14px;
    background: rgba(255, 255, 255, .025);
}

.deper-auth-capabilities strong {
    font-size: 12px;
}

.deper-auth-capabilities span {
    color: rgba(220, 245, 243, .5);
    font-size: 10px;
}

@media (max-width: 1100px) {
    .deper-auth-grid,
    .deper-auth-grid-register {
        grid-template-columns: 1fr;
    }

    .deper-auth-grid-login .deper-auth-visual-side,
    .deper-auth-grid-register .deper-auth-register-visual {
        min-height: auto;
        order: 2;
        padding: 62px 36px;
    }

    .deper-auth-form-side {
        min-height: 100vh;
    }

    .deper-auth-visual-content h2 {
        font-size: clamp(38px, 8vw, 62px);
    }
}

@media (max-width: 680px) {
    .deper-auth-form-side {
        min-height: 100vh;
        padding: 28px 18px 34px;
    }

    .deper-auth-logo-link {
        width: 118px;
        height: 96px;
        margin-bottom: 14px;
    }

    .deper-auth-heading h1 {
        font-size: 34px;
    }

    .deper-auth-field-grid {
        grid-template-columns: 1fr;
    }

    .deper-auth-pipeline {
        grid-template-columns: 1fr;
    }

    .deper-auth-pipeline-line {
        width: 1px;
        height: 18px;
        margin-left: 30px;
    }

    .deper-auth-capabilities {
        grid-template-columns: 1fr;
    }

    .deper-auth-visual-side {
        padding: 50px 22px;
    }

    .deper-auth-visual-content h2 {
        font-size: 42px;
    }
}
