/* SSE login page: a replica of the Cloudflare dashboard sign-in layout.
   Sizes and positions are measured from a 2560px-wide screenshot of dash.cloudflare.com/login. */
@import url('work-sans.css?v=20260918r');
@import url('inter.css?v=20260919m');

/* Full-window page: no theme padding, container, or dark-mode button */
#main-body.tt-auth-wrap { padding: 0 !important; margin: 0; display: block; min-height: 100vh; background: #fff !important; }
#main-body.tt-auth-wrap > .container { max-width: none; width: 100%; padding: 0; }
#main-body.tt-auth-wrap > .container > .row { margin: 0; }
#main-body.tt-auth-wrap .primary-content { flex: 0 0 100%; max-width: 100%; padding: 0; }
.tt-color-switch { display: none !important; }

.cf-login {
    display: flex;
    min-height: 100vh;
    width: 100%;
    background: #fff;
    color: #000;
    font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 20px;
    -webkit-font-smoothing: antialiased;
}
.cf-login *, .cf-login *::before, .cf-login *::after { box-sizing: border-box; }
.cf-login p { margin: 0; }

/* ---------- Left: form area (68.9% of the width) ---------- */
.cf-login-main {
    position: relative;
    flex: 0 0 68.9%;
    max-width: 68.9%;
    padding: 117px 24px 80px;
}
.cf-login-logo {
    position: absolute;
    top: 30px;
    left: 22px;
    display: inline-block;
    color: #000;
    font-weight: 700;
    text-decoration: none;
    line-height: 0;
}
.cf-login-logo img { display: block; height: 32px; width: auto; max-width: 180px; }
.cf-login-mobile-top { display: none; }

.cf-login-box { width: 353px; max-width: 100%; margin: 0 auto; }
.cf-login-title {
    font-family: inherit;
    font-size: 26px;
    line-height: 32px;
    font-weight: 600;
    color: #1C4B42;
    text-align: center;
    letter-spacing: -0.3px;
    margin: 0 0 26px;
}

/* Sign-in providers (shown when enabled under WHMCS > Sign-In Integrations) */
.cf-login-providers .btn,
.cf-login-providers button,
.cf-login-providers a.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 41px;
    margin: 0 0 6px;
    background: #fff;
    color: #000;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    font-size: 14px;
    font-weight: 500;
}
.cf-login-providers .btn:hover { background: #f7f7f7; }
.cf-login-or {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 20px 0 22px;
    font-size: 11px;
    line-height: 12px;
    letter-spacing: 0.4px;
    color: #707070;
}
.cf-login-or::before,
.cf-login-or::after { content: ""; flex: 1; height: 1px; background: #e5e5e5; }

/* Fields */
.cf-login-field { margin: 0 0 17px; }
.cf-login-field label {
    display: block;
    margin: 0 0 6px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #000;
}
.cf-login-input {
    display: block;
    width: 100%;
    height: 41px;
    padding: 0 13px;
    font-family: inherit;
    font-size: 14px;
    color: #000;
    background: #fff;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: border-color .15s ease, box-shadow .15s ease;
}
.cf-login-input:focus {
    outline: none;
    border-color: #1C4B42;
    box-shadow: 0 0 0 1px #1C4B42;
}
.cf-login-pw { position: relative; display: block; flex-wrap: nowrap; width: 100%; }
.cf-login-pw .cf-login-input { height: 42px; padding-right: 44px; border-radius: 6px !important; }
.cf-login-eye {
    position: absolute;
    top: 50%;
    right: 9px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #1d1d1d;
    cursor: pointer;
    z-index: 4;
}
.cf-login-eye:focus { outline: none; }

.cf-login-remember {
    display: flex !important;
    align-items: center;
    gap: 8px;
    margin: 33px 0 17px !important;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #000;
    cursor: pointer;
}
.cf-login-remember input {
    width: 16px;
    height: 16px;
    margin: 0;
    accent-color: #1C4B42;
    cursor: pointer;
}

.cf-login-submit {
    display: block;
    width: 100%;
    height: 42px;
    border: 1px solid #1C4B42;
    border-radius: 100px;
    background: #1C4B42;
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    cursor: pointer;
    transition: background-color .15s ease;
}
.cf-login-submit:hover { background: #163D36; color: #fff; }
.cf-login-submit:focus { outline: none; box-shadow: 0 0 0 2px #fff, 0 0 0 3px #1C4B42; }

.cf-login-links { margin-top: 26px; text-align: center; color: #595959; }
.cf-login-links p { line-height: 20px; margin: 0 0 7px; }
.cf-login-link { color: #1C4B42; font-weight: 500; text-decoration: none; }
.cf-login-link:hover { color: #0F2E28; text-decoration: underline; }
.cf-login-link-u { color: #1C4B42; text-decoration: underline; text-underline-offset: 2px; }
.cf-login-link-u:hover { color: #0F2E28; text-decoration-thickness: 2px; }

.cf-login-legal {
    margin: 46px auto 0 !important;
    text-align: center;
    font-size: 12px;
    line-height: 19px;
    color: #595959;
}
.cf-login-legal a { color: #595959; text-decoration: underline; text-underline-offset: 2px; text-decoration-color: #b3b3b3; }
.cf-login-legal a:hover { color: #000; }

.cf-login-form .tt-captcha-wrapper { margin: 10px 0 0; }
.cf-login-form .alert { border-radius: 6px; font-size: 14px; margin-bottom: 18px; }

.cf-login-cookies {
    position: absolute;
    left: 8px;
    bottom: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #1C4B42;
    text-decoration: none;
}
.cf-login-cookies:hover { text-decoration: underline; color: #1C4B42; }

/* ---------- Right: orange panel (31.1%) ---------- */
.cf-login-side {
    position: relative;
    flex: 0 0 31.1%;
    max-width: 31.1%;
    min-height: 100vh;
    overflow: hidden;
    color: #fff;
    background: #1C4B42;
    background-image: none;
}
/* Faint striped globe on the right side of the panel */
.cf-login-side::before {
    content: "";
    position: absolute;
    width: 750px;
    height: 750px;
    left: calc(69% - 375px);
    top: calc(50% - 375px);
    border-radius: 50%;
    background: repeating-linear-gradient(-50deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 5px);
    -webkit-mask-image: radial-gradient(circle at 55% 45%, #000 0%, rgba(0, 0, 0, .85) 45%, transparent 71%);
    mask-image: radial-gradient(circle at 55% 45%, #000 0%, rgba(0, 0, 0, .85) 45%, transparent 71%);
    pointer-events: none;
}
.cf-login-side-top {
    position: absolute;
    top: 29px;
    right: 18px;
    display: flex;
    align-items: center;
    gap: 22px;
    z-index: 2;
}
.cf-login-lang {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    border: 0;
    background: transparent;
    font-family: inherit;
    font-size: 14px;
    color: #000;
    cursor: pointer;
}
.cf-login-lang-light { color: #fff; }
.cf-login-lang:focus { outline: none; }
.cf-login-caret { font-size: 10px; opacity: .8; }
.cf-login-signup {
    display: inline-flex;
    align-items: center;
    height: 37px;
    padding: 0 12px;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.cf-login-signup:hover { color: #000; background: #f5f5f5; text-decoration: none; }

.cf-login-promo {
    position: absolute;
    left: 64px;
    right: 32px;
    top: 42.7%;
    z-index: 2;
}
.cf-login-promo-label {
    font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, "Liberation Mono", monospace;
    font-size: 13px;
    line-height: 16px;
    font-weight: 700;
    color: #B4E717;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 16px !important;
}
.cf-login-promo-title {
    font-family: inherit;
    font-size: 30px;
    line-height: 36px;
    font-weight: 700;
    letter-spacing: -0.6px;
    color: #fff;
    max-width: 300px;
    margin: 0 0 17px;
}
.cf-login-promo-text { font-size: 15px; line-height: 20px; font-weight: 500; color: #fff; margin: 0 0 16px !important; }
.cf-login-promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 36px;
    padding: 0 12px;
    font-size: 14px;
    font-weight: 500;
    color: #1C4B42;
    background: #B4E717;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    padding: 0 20px;
}
.cf-login-promo-btn:hover { color: #1C4B42; background: #c6f03d; text-decoration: none; }

/* ---------- Tablets and phones: form only ---------- */
@media (max-width: 991px) {
    .cf-login-main { flex: 1 1 100%; max-width: 100%; padding-top: 110px; }
    .cf-login-side { display: none; }
    .cf-login-mobile-top {
        display: flex;
        align-items: center;
        gap: 18px;
        position: absolute;
        top: 29px;
        right: 18px;
    }
    .cf-login-mobile-top .cf-login-signup { border-color: #dcdcdc; }
}

/* SSE colors */
.cf-login-side .cf-login-signup { background: #B4E717; color: #1C4B42; border-color: #B4E717; border-radius: 100px; font-weight: 600; padding: 0 18px; }
.cf-login-side .cf-login-signup:hover { background: #c6f03d; color: #1C4B42; }
.cf-login-mobile-top .cf-login-signup { border-radius: 100px; color: #1C4B42; border-color: #1C4B42; }
.cf-login-promo-title span { color: #B4E717; }

/* Rotating globe on the right panel (canvas drawn by js/sse-globe.js), placed like Cloudflare's */
.cf-login-side { background: #1C4B42 !important; background-image: none !important; }
.cf-login-side::before { display: none !important; }
.cf-login-globe {
    position: absolute;
    top: 50%;
    right: -32%;
    width: 42rem;
    max-width: none;
    aspect-ratio: 1 / 1;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 0;
    display: block;
}
.cf-login-globe-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 72%;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(to right, rgba(22, 61, 54, 0.92) 0%, rgba(28, 75, 66, 0.85) 45%, rgba(28, 75, 66, 0) 100%);
}
@media (min-width: 1280px) { .cf-login-globe { right: -18%; width: 46rem; } }
@media (min-width: 1536px) { .cf-login-globe { right: -8%; width: 50rem; } }

/* ==========================================================================
   Login panel in Conduktor's deep green (#072024), quieter globe, and the
   "Explore services" button styled exactly like Conduktor's "Talk to an architect"
   ========================================================================== */
.cf-login-side { background: #072024 !important; background-image: none !important; }
.cf-login-globe-fade {
    background: linear-gradient(to right, rgba(7, 32, 36, 0.94) 0%, rgba(7, 32, 36, 0.86) 45%, rgba(7, 32, 36, 0) 100%) !important;
}

@property --trace-angle {
    syntax: "<angle>";
    inherits: false;
    initial-value: 0deg;
}
@keyframes hero-cta-trace {
    100% { --trace-angle: 360deg; }
}
.cf-login-promo-btn,
.cf-login-promo-btn:visited {
    position: relative;
    isolation: isolate;
    z-index: 0;
    display: inline-flex;
    align-items: center;
    height: 42px;
    padding: 8px 16px !important;
    border: 0;
    border-radius: 999px !important;
    background: transparent !important;
    color: #BCFE68 !important;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    text-decoration: none;
    box-shadow: none;
    transition: background .2s;
}
.cf-login-promo-btn:hover {
    background: transparent !important;
    box-shadow: rgba(188, 254, 104, 0.06) 0 0 30px 6px;
    color: #BCFE68 !important;
    text-decoration: none;
}
.cf-login-promo-btn::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 999px;
    padding: 1px;
    background: conic-gradient(from var(--trace-angle),
        rgba(188, 254, 104, 0.08) 0%,
        rgba(188, 254, 104, 0.06) 45%,
        rgba(188, 254, 104, 0.2) 62%,
        rgba(188, 254, 104, 0.65) 70%,
        rgba(188, 254, 104, 0.2) 78%,
        rgba(188, 254, 104, 0.08) 92%,
        rgba(188, 254, 104, 0.08) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box exclude, linear-gradient(#fff 0 0);
    animation: hero-cta-trace 3.5s linear infinite;
    z-index: -1;
    pointer-events: none;
}

/* Logo: vector file, sized by height only so it keeps its real proportions */
.cf-login-logo img { height: 29px !important; width: auto !important; max-width: none !important; }

/* Title + subtitle */
.cf-login-title { margin-bottom: 8px !important; font-size: 24px !important; line-height: 32px !important; }
.cf-login-subtitle { margin: 0 0 28px !important; text-align: center; font-size: 15px; line-height: 22px; color: #595959; }
.cf-login-title { font-size: 22px !important; letter-spacing: -0.3px; white-space: nowrap; }
@media (max-width: 420px) { .cf-login-title { white-space: normal; } }

/* Sign-in form vertically centred in the white area */
.cf-login-main {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    padding-top: 96px !important;
    padding-bottom: 72px !important;
}
.cf-login-box { margin-top: auto !important; margin-bottom: auto !important; }

/* === SWAP: globe panel on the left, sign-in form on the right (delete this block to switch back) === */
@media (min-width: 992px) {
    .cf-login { flex-direction: row-reverse; position: relative; }
    /* logo sits over the green panel at the page's top-left, shown in white */
    .cf-login-logo { position: absolute; top: 30px; left: 22px; z-index: 5; }
    .cf-login-logo img { filter: brightness(0) invert(1); }
    /* language + Sign up move to the white side (top-right of the page) */
    .cf-login-side-top { display: none !important; }
    .cf-login-mobile-top { display: flex !important; align-items: center; gap: 18px; position: absolute; top: 29px; right: 18px; }
    .cf-login-mobile-top .cf-login-signup { border-color: #1C4B42; }
    /* cookie link follows the form to the right */
    .cf-login-cookies { left: auto; right: 12px; }
    /* the fade behind the promo text stays on the panel's outer (left) side */
    .cf-login-main { position: static; }
}

/* Sign-in form text in Inter (the font of docs.conduktor.io), self-hosted; icons keep their icon font */
.cf-login-main,
.cf-login-main :not(i):not(.fa):not(.fas):not(.far):not(.fab):not(.fal):not(.fad) {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
}
.cf-login-title { letter-spacing: -0.4px !important; font-weight: 600 !important; }

/* Login promo panel keeps Work Sans (the rest of the site uses Inter) */
.cf-login-side,
.cf-login-side .cf-login-promo-title,
.cf-login-side .cf-login-promo-text,
.cf-login-side .cf-login-promo-btn,
.cf-login-side .cf-login-lang,
.cf-login-side .cf-login-signup { font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important; }

/* Eyebrow above the promo title: lime "online" dot + label.
   Pulse copied from Tabler's .status-dot-animated (as used by Nginx Proxy Manager's Online status). */
.cf-login-promo-label { position: relative; display: flex; align-items: center; gap: 12px; }
.cf-login-promo-label::before {
    content: ""; flex: 0 0 auto; width: 8px; height: 8px; border-radius: 100rem; background: #B4E717;
}
.cf-login-promo-label::after {
    content: ""; position: absolute; left: 0; top: 50%; width: 8px; height: 8px; margin-top: -4px;
    border-radius: 100rem; background: #B4E717; opacity: .6;
    animation: 1s linear 2s infinite backwards sse-status-pulsate;
}
@keyframes sse-status-pulsate {
    25% { transform: scale(1); }
    80% { opacity: 0; transform: scale(3); }
    to { opacity: 0; transform: scale(3); }
}

/* Small laptops (992-1279px): widen the green panel a little so the promo copy keeps its two-line layout */
@media (min-width: 992px) and (max-width: 1279px) {
    .cf-login-side { flex-basis: 36%; max-width: 36%; }
    .cf-login-main { flex-basis: 64%; max-width: 64%; }
    .cf-login-promo { left: 36px; right: 16px; }
}

/* ---------- Forgot password inside the login card (js/sse-login-reset.js) ---------- */
.cf-login-box.is-switching { transition: height .3s cubic-bezier(.2, .7, .2, 1); }
.cf-view.is-out-left, .cf-reset-step.is-out-left { animation: cfViewOutLeft .17s ease-in forwards; }
.cf-view.is-out-right { animation: cfViewOutRight .17s ease-in forwards; }
.cf-view.is-in-right, .cf-reset-step.is-in-right { animation: cfViewInRight .3s cubic-bezier(.2, .7, .2, 1) both; }
.cf-view.is-in-left { animation: cfViewInLeft .3s cubic-bezier(.2, .7, .2, 1) both; }
@keyframes cfViewOutLeft { to { opacity: 0; transform: translateX(-24px); } }
@keyframes cfViewOutRight { to { opacity: 0; transform: translateX(24px); } }
@keyframes cfViewInRight { from { opacity: 0; transform: translateX(24px); } }
@keyframes cfViewInLeft { from { opacity: 0; transform: translateX(-24px); } }
.cf-view[hidden], .cf-reset-step[hidden], .cf-reset-error[hidden] { display: none !important; }

.cf-reset-error {
    margin: 0 0 16px; padding: 10px 14px; border-radius: 9px;
    background: #fdf3f2; border: 1px solid #f1cdc9; color: #9b2c22;
    font-size: 14px; line-height: 20px;
}
.cf-reset-form .cf-login-input[aria-invalid="true"] { border-color: #c0392b; }
.cf-reset-submit { display: flex; align-items: center; justify-content: center; gap: 10px; }
.cf-reset-submit:disabled { cursor: progress; }
.cf-reset-spinner {
    display: none; width: 16px; height: 16px; border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .35); border-top-color: #fff;
    animation: cfSpin .7s linear infinite;
}
.cf-reset-submit.is-loading .cf-reset-spinner { display: inline-block; }
@keyframes cfSpin { to { transform: rotate(360deg); } }
.cf-reset-back { display: inline-flex; align-items: center; gap: 6px; }

.cf-reset-done { text-align: center; }
.cf-reset-done-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 56px; height: 56px; margin-bottom: 18px; border-radius: 50%;
    background: #F6F5F2; color: #1C4B42;
}
.cf-reset-done-email { color: #1C4B42; font-weight: 600; overflow-wrap: anywhere; }
.cf-reset-done .cf-login-submit { margin-top: 4px; }

/* Google / remote sign-in messages inside the login card */
.cf-login-box .providerLinkingFeedback:empty { display: none; }
.cf-login-box .providerLinkingFeedback.alert {
    margin: 0 0 20px; padding: 12px 14px; border-radius: 9px; text-align: left;
    background: #F6F5F2; border: 1px solid #e6e9e7; color: #1f2a28;
    font-size: 14px; line-height: 20px;
}
.cf-login-box .providerLinkingFeedback.alert-danger { background: #fdf3f2; border-color: #f1cdc9; color: #9b2c22; }
.cf-login-box .providerLinkingFeedback.alert-success { background: #eef6ec; border-color: #cfe5c9; color: #1C4B42; }
.cf-login-box .providerLinkingFeedback img { width: 17px; height: 17px; vertical-align: -3px; margin-right: 6px; }
.sse-link-notice { display: flex; gap: 10px; align-items: flex-start; }
.sse-link-notice .sse-link-notice-icon img { margin: 1px 0 0; }
.sse-link-notice-text strong { color: #1C4B42; font-weight: 600; }
.sse-link-notice-new { display: block; margin-top: 6px; color: #5d6866; font-size: 13px; }
.sse-link-notice-new a { color: #1C4B42; font-weight: 600; text-decoration: underline; }
.sse-link-notice-new a:hover { color: #1C4B42; }

/* "Signing you in..." spinner for automatic Google sign-in */
.sse-link-spinner {
    flex: 0 0 auto; width: 16px; height: 16px; margin-top: 2px; border-radius: 50%;
    border: 2px solid rgba(28, 75, 66, .25); border-top-color: #1C4B42; animation: cfSpin .7s linear infinite;
}

.sse-link-notice-text a { color: #1C4B42; font-weight: 600; text-decoration: underline; }
.sse-link-notice-text a:hover { color: #1C4B42; }

/* ---------- Contact page (contact.tpl) in the login layout ---------- */
.cf-contact .cf-login-box { width: 460px; }
.cf-contact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 14px; }
.cf-login-textarea { height: auto; min-height: 140px; padding: 10px 13px; line-height: 1.5; resize: vertical; }
.cf-contact .sse-captcha-note { margin: 12px 0 0; text-align: center; font-size: 12px; line-height: 18px; color: #6b7472; }
.cf-contact .sse-captcha-note a { color: inherit; text-decoration: underline; }
.cf-contact-done { text-align: center; }
.cf-contact-btn, .cf-contact-btn:visited { display: flex; align-items: center; justify-content: center; color: #fff; text-decoration: none; }
.cf-contact-btn:hover { color: #fff; text-decoration: none; }
.cf-contact-toplink { font-size: 14px; font-weight: 500; color: #1C4B42; }
.cf-contact-toplink:hover { color: #1C4B42; text-decoration: underline; }
.cf-contact .cf-login-box .alert { margin-bottom: 18px; }
@media (max-width: 575px) { .cf-contact-row { grid-template-columns: 1fr; } }

/* Contact page illustration: line-art paper plane with a looping trail, directly above "Contact us" */
.cf-contact-art { width: 104px; max-width: 100%; margin: 0 auto 16px; }
.cf-contact-art svg { display: block; width: 100%; height: auto; overflow: visible; animation: cfContactFloat 3.4s ease-in-out infinite; }
@keyframes cfContactFloat { 0%, 100% { transform: translate(0, 0) rotate(0deg); } 50% { transform: translate(2px, -4px) rotate(-1.5deg); } }
@media (max-width: 575px) { .cf-contact-art { width: 90px; } }
@media (max-width: 575px) { .cf-br-wide { display: none; } }
