/*
 * CryptoZone Professional Login
 * Visual overrides only
 * 2026-09-07
 */

:root {
    --cz-bg: #080d15;
    --cz-bg2: #0d1420;
    --cz-panel: #101824;
    --cz-panel2: #141e2d;
    --cz-border: rgba(255,255,255,.075);
    --cz-border-focus: rgba(32,199,104,.55);
    --cz-text: #f3f6fb;
    --cz-muted: #8490a4;
    --cz-green: #20c768;
    --cz-green-hover: #27d873;
    --cz-red: #ea3943;
}

/* ==========================================================
   PAGE
   ========================================================== */

html {
    background: var(--cz-bg);
}

body.kr-login,
body {
    background:
        radial-gradient(circle at 18% 25%, rgba(32,199,104,.08), transparent 28%),
        radial-gradient(circle at 82% 75%, rgba(75,140,255,.06), transparent 30%),
        linear-gradient(135deg, #070b12 0%, #0b111b 48%, #0c1420 100%) !important;

    background-image:
        radial-gradient(circle at 18% 25%, rgba(32,199,104,.08), transparent 28%),
        radial-gradient(circle at 82% 75%, rgba(75,140,255,.06), transparent 30%),
        linear-gradient(135deg, #070b12 0%, #0b111b 48%, #0c1420 100%) !important;

    color: var(--cz-text);
    -webkit-font-smoothing: antialiased;
}

/* subtle grid */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: .18;

    background-image:
        linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);

    background-size: 44px 44px;
}

/* glow */
body::after {
    content: "";
    position: fixed;
    width: 500px;
    height: 500px;
    left: 50%;
    top: 50%;
    transform: translate(-78%, -55%);
    border-radius: 50%;
    background: rgba(32,199,104,.035);
    filter: blur(80px);
    pointer-events: none;
}

/* ==========================================================
   MAIN CARD
   ========================================================== */

body > form {
    position: relative;
    z-index: 2;

    width: 900px;
    max-width: calc(100vw - 40px);
    height: 520px;

    border: 1px solid var(--cz-border);
    border-radius: 12px;

    background: #0f1723;

    box-shadow:
        0 30px 80px rgba(0,0,0,.48),
        0 0 0 1px rgba(255,255,255,.015);

    overflow: hidden;
}

/* ==========================================================
   LOGIN SIDE
   ========================================================== */

body > form > section.kr-login-view {
    width: 350px;
    min-width: 350px;
    background:
        linear-gradient(180deg, rgba(19,28,42,.98), rgba(12,19,29,.98));
    border-right: 1px solid var(--cz-border);
}

body > form > section.kr-login-view > * {
    width: 275px;
}

body > form > section > header {
    min-height: 115px;
    justify-content: center;
}

/*
 * Existing page uses the "black" logo.
 * Keep the logo file itself untouched and make it readable
 * against the dark login panel.
 */
body > form > section > header > img {
    width: 215px;
    max-height: 70px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: .96;
}

/* ==========================================================
   INPUTS
   ========================================================== */

body > form input[type="text"],
body > form input[type="password"] {
    box-sizing: border-box;
    width: 100%;

    padding: 14px 15px;

    border: 1px solid rgba(255,255,255,.085);
    border-radius: 6px;

    background: #0b121d;

    color: #f5f7fb;
    font-size: 14px;

    outline: none;

    transition:
        border-color .18s ease,
        background .18s ease,
        box-shadow .18s ease;
}

body > form input[type="text"]::placeholder,
body > form input[type="password"]::placeholder {
    color: #657187;
}

body > form input[type="text"]:hover,
body > form input[type="password"]:hover {
    border-color: rgba(255,255,255,.14);
}

body > form input[type="text"]:focus,
body > form input[type="password"]:focus {
    background: #0d1622;
    border-color: var(--cz-border-focus);
    box-shadow: 0 0 0 3px rgba(32,199,104,.08);
}

/* errors */

body > form input[type="password"].kr-inp-error,
body > form input[type="text"].kr-inp-error {
    color: #fff !important;
    border-color: var(--cz-red) !important;
    box-shadow: 0 0 0 3px rgba(234,57,67,.08);
}

/* Error message area */

body > form > section > section > section.kr-login-field > div {
    min-height: 14px;
    box-sizing: border-box;
    padding-top: 5px;
    padding-bottom: 9px;
    color: #ff5f68;
}

/* ==========================================================
   LOGIN FOOTER
   ========================================================== */

body > form > section > section > section.kr-login-field > footer {
    padding-top: 6px;
}

body > form > section > section > section.kr-login-field > footer > a {
    color: var(--cz-muted);
    font-size: 13px;
    transition: color .15s ease;
}

body > form > section > section > section.kr-login-field > footer > a:hover {
    color: #d7dde7;
}

/* LOGIN BUTTON */

body > form > section > section > section.kr-login-field > footer > button {
    min-width: 105px;
    height: 41px;

    padding: 0 22px;

    border: 0;
    border-radius: 5px;

    background: var(--cz-green) !important;

    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .35px;

    cursor: pointer;

    box-shadow: 0 7px 20px rgba(32,199,104,.15);

    transition:
        background .15s ease,
        transform .15s ease,
        box-shadow .15s ease;
}

body > form > section > section > section.kr-login-field > footer > button:hover {
    background: var(--cz-green-hover) !important;
    transform: translateY(-1px);
    box-shadow: 0 9px 25px rgba(32,199,104,.22);
}

body > form > section > section > section.kr-login-field > footer > button:active {
    transform: translateY(0);
}

/* ==========================================================
   SEPARATOR
   ========================================================== */

body > form > section > section > section.kr-login-separator {
    padding: 14px 0;
}

body > form > section > section > section.kr-login-separator > div {
    border-bottom: 1px solid rgba(255,255,255,.07);
}

body > form > section > section > section.kr-login-separator > span {
    color: #657187;
    font-size: 12px;
    text-transform: uppercase;
}

/* ==========================================================
   OAUTH / CREATE ACCOUNT
   ========================================================== */

body > form > section > section > section.kr-login-oauth a {
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 5px !important;

    background: #172131;

    color: #e7ebf2;

    overflow: hidden;

    transition:
        background .15s ease,
        border-color .15s ease,
        transform .15s ease;
}

body > form > section > section > section.kr-login-oauth a:hover {
    background: #1c283a;
    border-color: rgba(255,255,255,.12);
    transform: translateY(-1px);
}

body > form > section > section > section.kr-login-oauth a > div.kr-login-oauth-icn,
body > form > section > section > section.kr-login-oauth > div > a > div.kr-login-oauth-icn {
    background: rgba(255,255,255,.04);
    border-right: 1px solid rgba(255,255,255,.05);
}

body > form > section > section > section.kr-login-oauth a > div.kr-login-oauth-name,
body > form > section > section > section.kr-login-oauth > div > a > div.kr-login-oauth-name {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .25px;
}

/* ==========================================================
   RIGHT OVERVIEW
   ========================================================== */

body > form > section.kr-app-overview {
    border-radius: 0 12px 12px 0;
    background: #0a1019;
}

body > form > section.kr-app-overview > section {
    width: 550px;
    min-width: 550px;
    height: 520px;

    border-radius: 0 12px 12px 0;

    background-color: #0b111b;

    filter:
        saturate(.82)
        contrast(1.05)
        brightness(.72);

    transform: scale(1.01);
}

/* dark overlay over existing slideshow/image */

body > form > section.kr-app-overview::after {
    content: "";
    z-index: 2;
    position: absolute;
    inset: 0;
    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(7,12,19,.30) 0%,
            rgba(7,12,19,.05) 40%,
            rgba(7,12,19,.15) 100%
        );
}

body > form > section.kr-app-overview > div.kr-app-ovrview-infos {
    z-index: 5;

    padding: 35px;

    border-radius: 0 0 12px 0;

    background:
        linear-gradient(
            to bottom,
            transparent 0%,
            rgba(5,9,15,.20) 25%,
            rgba(5,9,15,.95) 100%
        );
}

body > form > section.kr-app-overview > div.kr-app-ovrview-infos > div > h2 {
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -.5px;
    text-shadow: 0 2px 12px rgba(0,0,0,.4);
}

body > form > section.kr-app-overview > div.kr-app-ovrview-infos > ul > li {
    height: 4px;
    width: 20px;

    background: rgba(255,255,255,.45);

    border-radius: 4px;
}

body > form > section.kr-app-overview > div.kr-app-ovrview-infos > ul > li.kr-app-ovrview-selected {
    width: 42px;
    background: var(--cz-green);
}

/* ==========================================================
   LOADING
   ========================================================== */

div.kr-loading-fnc {
    border-radius: 12px 0 0 12px;
    background: #101824;
}

section.kr-login-loading-full {
    background: #080d15;
}

/* ==========================================================
   TWO FACTOR
   ========================================================== */

section.kr-login-tfs {
    background: rgba(4,8,13,.82);
    backdrop-filter: blur(8px);
}

section.kr-login-tfs > section {
    width: 400px;
    height: 400px;

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px;

    background: #111a27;

    color: #fff;

    box-shadow: 0 30px 70px rgba(0,0,0,.5);
}

/* ==========================================================
   PAGE FOOTER
   ========================================================== */

body > footer {
    position: relative;
    z-index: 3;

    width: 900px;
    max-width: calc(100% - 40px);

    margin-top: 15px;

    color: #667287;
}

body > footer > ul > li > a {
    color: #778398;
}

body > footer > ul > li > a:hover {
    color: var(--cz-green);
    text-decoration: none;
}

div.kr_lang_select > div {
    border-radius: 5px;
}

div.kr_lang_select > div:hover {
    background: rgba(255,255,255,.05);
}

div.kr_lang_select > div > span {
    color: #9aa5b7;
}

div.kr_lang_select > ul {
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 6px;

    background: #121b29;

    box-shadow: 0 15px 35px rgba(0,0,0,.4);
}

div.kr_lang_select > ul > li > a > span {
    color: #c7cfdb;
}

div.kr_lang_select > ul > li > a:hover {
    background: #192435;
}

/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 820px) {

    body {
        min-height: 100%;
        height: auto;
        padding: 25px 0;
        box-sizing: border-box;
    }

    body > form {
        width: calc(100% - 28px);
        max-width: 430px;
        height: auto;
        min-height: 500px;
        border-radius: 10px;
    }

    body > form > section.kr-login-view {
        width: 100%;
        min-width: 100%;
        border-right: 0;
        border-radius: 10px;
    }

    body > form > section.kr-login-view > * {
        width: calc(100% - 54px);
        max-width: 330px;
    }

    body > form > section.kr-app-overview {
        display: none !important;
    }

    body > footer {
        width: calc(100% - 40px);
        max-width: 430px;
    }
}

/* ==========================================================
   LOGIN FINAL POLISH
   ========================================================== */

/* Better vertical balance on left panel */
body > form > section.kr-login-view {
    justify-content: center !important;
    gap: 18px;
}

/* Logo area */
body > form > section.kr-login-view > header {
    min-height: 70px !important;
    height: 70px;
    margin-bottom: 8px;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

/* Make configured logo visible on dark background */
body > form > section.kr-login-view > header > img {
    display: block !important;
    width: 190px !important;
    max-width: 190px !important;
    max-height: 58px !important;
    object-fit: contain;
    opacity: 1 !important;
    filter: brightness(0) invert(1) !important;
}

/* Login content should not stretch vertically */
body > form > section.kr-login-view > section {
    flex: 0 0 auto !important;
    width: 275px;
}

/* Slightly cleaner fields */
body > form input[type="text"],
body > form input[type="password"] {
    height: 46px;
}

/* Main login button */
body > form > section > section >
section.kr-login-field > footer > button {
    border-radius: 6px !important;
    box-shadow: 0 6px 18px rgba(32,199,104,.18);
}

/* Create-account button: proper secondary action */
body > form section.kr-login-oauth > a.kr-login-signup-ctrl {
    box-sizing: border-box;
    height: 42px;

    display: flex !important;
    align-items: center;
    justify-content: center;

    background: #121c2a !important;
    border: 1px solid rgba(255,255,255,.10) !important;
    border-radius: 6px !important;

    color: #dce3ed !important;

    box-shadow: none !important;
}

body > form section.kr-login-oauth >
a.kr-login-signup-ctrl:hover {
    background: #182536 !important;
    border-color: rgba(32,199,104,.38) !important;
    color: #fff !important;
}

/* Green accent when working inside login form */
body > form:focus-within {
    border-color: rgba(32,199,104,.17);
    box-shadow:
        0 30px 80px rgba(0,0,0,.48),
        0 0 0 1px rgba(32,199,104,.035);
}

/* Cleaner footer */
body > footer {
    padding: 0 6px;
    box-sizing: border-box;
}

body > footer > ul > li > a {
    font-size: 11px;
    letter-spacing: .25px;
}

/* Mobile */
@media (max-width: 820px) {

    body > form > section.kr-login-view {
        padding: 30px 0;
        box-sizing: border-box;
    }

    body > form > section.kr-login-view > header {
        margin-bottom: 15px;
    }
}


/* ==========================================================
   PROFESSIONAL LOGIN V2
   ========================================================== */

.cz-login-intro {
    width: 275px !important;
    margin: 0 0 18px 0;
}

.cz-login-intro h1 {
    margin: 0 0 7px 0;

    color: #f7f9fc;
    font-size: 25px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -.4px;
}

.cz-login-intro p {
    margin: 0;

    color: #7f8ca1;
    font-size: 13px;
    line-height: 1.5;
}

/* Give the actual auth area a cleaner card-like rhythm */
body > form > section.kr-login-view > section {
    width: 275px !important;
}

/* Inputs more premium */
body > form input[type="text"],
body > form input[type="password"] {
    height: 48px !important;

    padding-left: 15px !important;
    padding-right: 15px !important;

    background: #0b131e !important;
    border: 1px solid rgba(255,255,255,.08) !important;
    border-radius: 7px !important;
}

body > form input[type="text"]:focus,
body > form input[type="password"]:focus {
    border-color: rgba(32,199,104,.55) !important;
    background: #0e1723 !important;

    box-shadow:
        0 0 0 3px rgba(32,199,104,.07) !important;
}

/* Better login footer alignment */
body > form > section > section >
section.kr-login-field > footer {
    margin-top: 2px;
}

/* Forgot password */
body > form > section > section >
section.kr-login-field > footer > a {
    color: #8290a5 !important;
}

body > form > section > section >
section.kr-login-field > footer > a:hover {
    color: #b9c3d1 !important;
}

/* Main login button: full premium feel */
body > form > section > section >
section.kr-login-field > footer > button {
    height: 43px !important;
    min-width: 108px !important;

    background:
        linear-gradient(135deg, #18b85b, #20cf69) !important;

    border-radius: 7px !important;

    box-shadow:
        0 8px 22px rgba(32,199,104,.18) !important;
}

/* Separator cleaner */
body > form > section > section >
section.kr-login-separator > span {
    font-size: 10px !important;
    letter-spacing: .8px !important;
}

/* Secondary action */
body > form section.kr-login-oauth >
a.kr-login-signup-ctrl {
    height: 44px !important;

    background: transparent !important;
    border: 1px solid rgba(255,255,255,.11) !important;

    color: #dfe5ee !important;

    text-transform: none !important;
}

body > form section.kr-login-oauth >
a.kr-login-signup-ctrl:hover {
    background: rgba(255,255,255,.035) !important;
    border-color: rgba(32,199,104,.30) !important;
}

/* Product-preview side darker and more cinematic */
body > form > section.kr-app-overview > section {
    filter:
        saturate(.72)
        contrast(1.08)
        brightness(.58) !important;
}

body > form > section.kr-app-overview::after {
    background:
        linear-gradient(
            90deg,
            rgba(7,12,19,.35) 0%,
            rgba(7,12,19,.08) 42%,
            rgba(7,12,19,.18) 100%
        ) !important;
}

/* Product caption */
body > form > section.kr-app-overview >
div.kr-app-ovrview-infos > div > h2 {
    font-size: 27px !important;
    font-weight: 650 !important;
}

/* Card border and depth */
body > form {
    border-color: rgba(255,255,255,.08) !important;

    box-shadow:
        0 35px 90px rgba(0,0,0,.52),
        0 0 0 1px rgba(255,255,255,.015) !important;
}

/* Compact footer */
body > footer {
    margin-top: 13px !important;
}

@media (max-width: 820px) {
    .cz-login-intro {
        width: calc(100% - 54px) !important;
        max-width: 330px !important;
    }

    .cz-login-intro h1 {
        font-size: 23px;
    }
}


/* ==========================================================
   LOGIN BENEFITS / SPACE BALANCE
   ========================================================== */

.cz-login-intro {
    margin-bottom: 22px !important;
}

.cz-login-benefits {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.cz-login-benefits > div {
    display: flex;
    align-items: center;
    gap: 9px;

    color: #9aa5b7;
    font-size: 12px;
    line-height: 1.4;
}

.cz-login-benefit-dot {
    width: 7px;
    height: 7px;
    min-width: 7px;

    border-radius: 50%;
    background: #20c768;

    box-shadow: 0 0 0 4px rgba(32,199,104,.08);
}

/* slightly fuller left panel */
body > form > section.kr-login-view {
    padding-top: 12px;
    padding-bottom: 12px;
    box-sizing: border-box;
}

body > form > section.kr-login-view > section {
    margin-top: 3px;
}

/* balance spacing between sections */
body > form > section > section > section.kr-login-separator {
    margin-top: 3px;
    margin-bottom: 3px;
}


/* ==========================================================
   FIX LOGIN CARD HEIGHT - V5
   ========================================================== */

/* Main login card */
body > form {
    height: 570px !important;
    min-height: 570px !important;
}

/* Both sides must follow card height */
body > form > section.kr-login-view,
body > form > section.kr-app-overview {
    height: 570px !important;
    min-height: 570px !important;
}

/* Keep login content vertically balanced */
body > form > section.kr-login-view {
    box-sizing: border-box !important;
    overflow: visible !important;
}

/* Make sure signup button stays inside */
body > form section.kr-login-oauth {
    margin-bottom: 0 !important;
}

body > form section.kr-login-oauth >
a.kr-login-signup-ctrl {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
}

/* Right image stays clipped to rounded card */
body > form > section.kr-app-overview {
    overflow: hidden !important;
}


/* ==========================================================
   GLOBAL FINANCE LOGIN DESIGN
   ========================================================== */

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

body.kr-login,
body {
    position: relative !important;
    overflow: hidden !important;

    background:
        linear-gradient(
            90deg,
            rgba(3,8,14,.10),
            rgba(3,8,14,.46) 42%,
            rgba(3,8,14,.78) 78%,
            rgba(3,8,14,.92)
        ),
        url('../img/login/cryptozone-global-bg.png')
        center center / cover no-repeat fixed !important;
}

/* Dark cinematic overlay */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;

    background:
        radial-gradient(
            circle at 34% 44%,
            rgba(0,220,150,.07),
            transparent 35%
        ),
        linear-gradient(
            180deg,
            rgba(3,8,14,.10),
            rgba(3,8,14,.30)
        ) !important;
}

/* Remove old grid overlay */
body::after {
    display: none !important;
}

/* ==========================================================
   OUTSIDE BRANDING
   ========================================================== */

.cz-global-brand {
    position: fixed;
    z-index: 5;

    top: 42px;
    left: 74px;

    color: #fff;
}

.cz-global-brand-main {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 1px;
}

.cz-global-brand-main span {
    color: #1ed47a;
}

.cz-global-brand-sub {
    margin-top: 4px;

    color: #778699;
    font-size: 10px;
    letter-spacing: 5px;
}

.cz-global-title {
    position: fixed;
    z-index: 5;

    top: 50px;
    right: 74px;

    text-align: right;

    color: #8995a6;
    font-size: 12px;
    line-height: 1.8;
    letter-spacing: 5px;
}

.cz-global-title span {
    display: block;
}

.cz-global-message {
    position: fixed;
    z-index: 5;

    left: 75px;
    bottom: 105px;

    color: #8d99aa;
    font-size: 12px;
    line-height: 1.9;
    letter-spacing: 4px;
}

.cz-global-message i {
    display: block;

    width: 45px;
    height: 2px;

    margin-top: 20px;

    background: #19d379;
}

/* ==========================================================
   RIGHT MARKET LIST
   ========================================================== */

.cz-market-list {
    position: fixed;
    z-index: 5;

    right: 78px;
    top: 50%;

    transform: translateY(-50%);

    display: flex;
    flex-direction: column;
    gap: 23px;

    padding-left: 20px;

    border-left: 1px solid rgba(255,255,255,.18);
}

.cz-market-list span {
    color: #697486;

    font-size: 12px;
    letter-spacing: 1px;
}

.cz-market-list span.active {
    color: #26da89;
    font-weight: 700;
}

.cz-market-list span.active::before {
    content: "";

    position: absolute;
    left: -1px;

    width: 2px;
    height: 38px;

    background: #26da89;
}

/* ==========================================================
   MAIN CARD POSITION
   ========================================================== */

body > form {
    z-index: 10 !important;

    width: 990px !important;
    max-width: calc(100vw - 360px) !important;

    height: 585px !important;
    min-height: 585px !important;

    border: 1px solid rgba(122,174,163,.22) !important;
    border-radius: 10px !important;

    background: rgba(6,14,23,.72) !important;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow:
        0 35px 90px rgba(0,0,0,.55),
        0 0 0 1px rgba(41,208,128,.025) !important;
}

/* ==========================================================
   LEFT LOGIN PANEL
   ========================================================== */

body > form > section.kr-login-view {
    width: 380px !important;
    min-width: 380px !important;

    height: 585px !important;
    min-height: 585px !important;

    padding: 36px 36px 28px !important;

    box-sizing: border-box !important;

    background:
        linear-gradient(
            180deg,
            rgba(20,34,50,.95),
            rgba(11,23,35,.96)
        ) !important;

    border-right: 1px solid rgba(255,255,255,.07) !important;
}

body > form > section.kr-login-view > * {
    width: 100% !important;
}

/* Hide logo inside card */
body > form > section.kr-login-view > header {
    display: none !important;
}

/* ==========================================================
   INTRO
   ========================================================== */

.cz-login-intro {
    width: 100% !important;

    margin:
        15px
        0
        30px
        0 !important;
}

.cz-login-intro h1 {
    margin-bottom: 8px !important;

    color: #f5f8fb !important;

    font-size: 29px !important;
    font-weight: 750 !important;
    letter-spacing: -.6px !important;
}

.cz-login-intro p {
    color: #91a0b2 !important;

    font-size: 13px !important;
}

.cz-login-benefits {
    margin-top: 24px !important;
    gap: 13px !important;
}

.cz-login-benefits > div {
    color: #b8c4d2 !important;

    font-size: 13px !important;
}

.cz-login-benefit-icon {
    display: inline-flex;

    width: 20px;
    height: 20px;

    align-items: center;
    justify-content: center;

    color: #23d47f;

    font-size: 15px;
    font-weight: bold;
}

/* ==========================================================
   FORM
   ========================================================== */

body > form > section.kr-login-view > section {
    width: 100% !important;
    margin: 0 !important;
}

body > form input[type="text"],
body > form input[type="password"] {
    width: 100% !important;

    height: 50px !important;

    box-sizing: border-box !important;

    padding: 0 16px !important;

    border:
        1px solid
        rgba(255,255,255,.085)
        !important;

    border-radius: 6px !important;

    background:
        rgba(5,13,22,.72)
        !important;

    color: #fff !important;

    font-size: 14px !important;
}

/* ==========================================================
   LOGIN ACTION
   ========================================================== */

body > form >
section.kr-login-view >
section >
section.kr-login-field >
footer {
    margin-top: 3px !important;

    padding: 0 !important;
}

body > form >
section.kr-login-view >
section >
section.kr-login-field >
footer > a {
    color: #9ca9b9 !important;

    font-size: 13px !important;
}

body > form >
section.kr-login-view >
section >
section.kr-login-field >
footer > button {
    width: 120px !important;
    height: 47px !important;

    border-radius: 6px !important;

    background:
        linear-gradient(
            135deg,
            #10bc68,
            #23df86
        ) !important;

    font-size: 14px !important;

    box-shadow:
        0 10px 26px
        rgba(24,215,124,.25)
        !important;
}

/* ==========================================================
   SEPARATOR
   ========================================================== */

body > form >
section.kr-login-view >
section >
section.kr-login-separator {
    margin:
        14px
        0
        13px
        0 !important;
}

body > form >
section.kr-login-view >
section >
section.kr-login-separator >
div {
    border-color:
        rgba(255,255,255,.10)
        !important;
}

body > form >
section.kr-login-view >
section >
section.kr-login-separator >
span {
    color: #788596 !important;
}

/* ==========================================================
   CREATE ACCOUNT
   ========================================================== */

body > form
section.kr-login-oauth >
a.kr-login-signup-ctrl {
    width: 100% !important;

    height: 48px !important;

    border:
        1px solid
        rgba(255,255,255,.12)
        !important;

    border-radius: 6px !important;

    background:
        rgba(7,16,26,.28)
        !important;

    color: #e3e9f0 !important;
}

body > form
section.kr-login-oauth >
a.kr-login-signup-ctrl:hover {
    border-color:
        rgba(32,214,125,.40)
        !important;

    background:
        rgba(22,40,52,.65)
        !important;
}

/* ==========================================================
   RIGHT PRODUCT PANEL
   ========================================================== */

body > form > section.kr-app-overview {
    height: 585px !important;

    border-radius: 0 10px 10px 0 !important;

    overflow: hidden !important;

    background:
        rgba(3,8,13,.3)
        !important;
}

body > form >
section.kr-app-overview >
section {
    width: 610px !important;
    min-width: 610px !important;

    height: 585px !important;

    border-radius: 0 10px 10px 0 !important;

    filter:
        brightness(.72)
        contrast(1.10)
        saturate(.82)
        !important;
}

/* Right-side tint */
body > form >
section.kr-app-overview::after {
    background:
        linear-gradient(
            90deg,
            rgba(4,10,16,.45),
            rgba(4,10,16,.08) 45%,
            rgba(4,10,16,.22)
        )
        !important;
}

/* Caption */
body > form >
section.kr-app-overview >
div.kr-app-ovrview-infos {
    padding: 38px !important;
}

body > form >
section.kr-app-overview >
div.kr-app-ovrview-infos >
div > h2 {
    max-width: 290px;

    color: #fff !important;

    font-size: 33px !important;
    line-height: 1.03 !important;

    font-weight: 800 !important;
}

/* slider */
body > form >
section.kr-app-overview >
div.kr-app-ovrview-infos >
ul > li {
    width: 20px !important;
    height: 4px !important;

    background:
        rgba(255,255,255,.50)
        !important;
}

body > form >
section.kr-app-overview >
div.kr-app-ovrview-infos >
ul > li.kr-app-ovrview-selected {
    width: 42px !important;

    background: #1ed47a !important;
}

/* ==========================================================
   FOOTER
   ========================================================== */

body > footer {
    z-index: 10 !important;

    width: 990px !important;
    max-width: calc(100vw - 360px) !important;

    margin-top: 16px !important;
}

body > footer > ul > li > a {
    color: #8591a1 !important;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 1250px) {

    .cz-global-brand,
    .cz-global-title,
    .cz-global-message,
    .cz-market-list {
        display: none !important;
    }

    body > form {
        max-width: calc(100vw - 60px) !important;
    }

    body > footer {
        max-width: calc(100vw - 60px) !important;
    }
}

@media (max-width: 820px) {

    body {
        overflow-y: auto !important;
    }

    body > form {
        width: calc(100% - 26px) !important;
        max-width: 430px !important;

        height: auto !important;
        min-height: 590px !important;
    }

    body > form >
    section.kr-login-view {
        width: 100% !important;
        min-width: 100% !important;

        height: auto !important;
        min-height: 590px !important;
    }

    body > form >
    section.kr-app-overview {
        display: none !important;
    }

    body > footer {
        width: calc(100% - 30px) !important;
        max-width: 430px !important;
    }
}


/* ==========================================================
   RESPONSIVE LOGIN SLIDER FIX
   ========================================================== */

body > form > section.kr-app-overview {
    position: relative !important;
    overflow: hidden !important;
}

/* Each slide exactly equals visible overview width */
body > form > section.kr-app-overview > section {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;

    height: 100% !important;

    flex: 0 0 100% !important;

    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;

    transition: transform .45s ease !important;
}

/* Keep image dark enough for title */
body > form > section.kr-app-overview::after {
    background:
        linear-gradient(
            180deg,
            rgba(3,8,14,.08) 0%,
            rgba(3,8,14,.02) 55%,
            rgba(3,8,14,.58) 100%
        ) !important;
}

/* Cleaner title placement */
body > form > section.kr-app-overview >
div.kr-app-ovrview-infos {
    padding: 32px 38px !important;
}

body > form > section.kr-app-overview >
div.kr-app-ovrview-infos > div > h2 {
    font-size: 30px !important;
    line-height: 1.1 !important;
    font-weight: 700 !important;

    text-shadow:
        0 2px 12px rgba(0,0,0,.75) !important;
}

/* Slider indicators */
body > form > section.kr-app-overview >
div.kr-app-ovrview-infos > ul > li {
    height: 4px !important;
    width: 20px !important;
}

body > form > section.kr-app-overview >
div.kr-app-ovrview-infos > ul >
li.kr-app-ovrview-selected {
    width: 42px !important;
}


/* Wider cinematic login */
body > form {
    width: 1180px !important;
    max-width: calc(100vw - 180px) !important;
}

body > form > section.kr-login-view {
    width: 380px !important;
    min-width: 380px !important;
}

/* Gives right image roughly 800px width */
body > form > section.kr-app-overview {
    flex: 1 1 auto !important;
}

body > footer {
    width: 1180px !important;
    max-width: calc(100vw - 180px) !important;
}

@media (max-width: 1350px) {
    body > form,
    body > footer {
        max-width: calc(100vw - 60px) !important;
    }
}


/* ==========================================================
   SLIDE-SPECIFIC IMAGE POSITIONING
   ========================================================== */

/* Default */
body > form > section.kr-app-overview > section {
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

/* Slide 1 - trading laptop */
body > form > section.kr-app-overview > section:nth-of-type(1) {
    background-position: center center !important;
}

/* Slide 2 - global markets */
body > form > section.kr-app-overview > section:nth-of-type(2) {
    background-position: 68% center !important;
}

/* Slide 3 - portfolio */
body > form > section.kr-app-overview > section:nth-of-type(3) {
    background-position: 62% center !important;
}

/* Slide 4 - security */
body > form > section.kr-app-overview > section:nth-of-type(4) {
    background-position: 68% center !important;
}


/* ==========================================================
   SLIDER - SHOW FULL IMAGE, NO ZOOM/CROP
   ========================================================== */

body > form > section.kr-app-overview > section {
    background-size: contain !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-color: #050a11 !important;
}

/* Override previous slide-specific crop positions */
body > form > section.kr-app-overview > section:nth-of-type(1),
body > form > section.kr-app-overview > section:nth-of-type(2),
body > form > section.kr-app-overview > section:nth-of-type(3),
body > form > section.kr-app-overview > section:nth-of-type(4) {
    background-size: contain !important;
    background-position: center center !important;
}


/* ==========================================================
   SLIDER FINAL FIT
   Full image, aligned top, no ugly top black band
   ========================================================== */

body > form > section.kr-app-overview > section,
body > form > section.kr-app-overview > section:nth-of-type(1),
body > form > section.kr-app-overview > section:nth-of-type(2),
body > form > section.kr-app-overview > section:nth-of-type(3),
body > form > section.kr-app-overview > section:nth-of-type(4) {
    background-size: contain !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
    background-color: #03080e !important;
}


/* Signup - Terms agreement */
label[for="kr_usr_agree"] {
    color: #b8c3d1 !important;
}

label[for="kr_usr_agree"] i {
    color: #16d98b !important;
    font-style: normal !important;
    font-weight: 600 !important;
}
