body.krk-landing {
    --krk-parallax-x: 0px;
    --krk-parallax-y: 0px;
    --krk-navy: #162340;
    --krk-orange: #f18700;
    --krk-sky: #0082ca;
    --krk-cream: #f9f7f4;
    margin: 0;
    height: 100vh;
    min-height: 100vh;
    background-color: var(--krk-navy);
    font-family: 'PT Sans', 'Helvetica Neue', Arial, sans-serif;
    color: #fff;
    overflow: hidden;
}

body.krk-landing #wpadminbar {
    display: none !important;
}

body.krk-landing::before {
    content: none;
}

body.krk-landing::after {
    content: "";
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, rgba(22, 35, 64, 0.85) 0%, rgba(22, 35, 64, 0.45) 45%, rgba(0, 130, 202, 0.25) 100%);
    z-index: -1;
}

.krk-landing__background {
    position: fixed;
    inset: -6%;
    width: 112%;
    height: 112%;
    overflow: hidden;
    pointer-events: none;
    transform: translate3d(var(--krk-parallax-x), var(--krk-parallax-y), 0) scale(1.06);
    transition: transform 0.35s ease-out;
    z-index: -3;
    background: var(--krk-landing-bg) center/cover no-repeat;
}

.krk-landing__background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.78);
}

.krk-landing__stage {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(24px, 8vh, 64px) clamp(24px, 5vw, 64px);
    box-sizing: border-box;
    position: relative;
    isolation: isolate;
}

.krk-landing__content {
    width: min(520px, 100%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
}

.krk-landing__logo {
    width: 220px;
    margin: 0 auto;
}

.krk-landing__logo img {
    display: block;
    width: 100%;
    height: auto;
}

.krk-landing__card {
    background: rgba(249, 247, 244, 0.16);
    border: 1px solid rgba(249, 247, 244, 0.38);
    border-radius: 24px;
    padding: clamp(24px, 4vw, 36px);
    box-shadow: 0 32px 56px rgba(13, 25, 53, 0.42);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.krk-landing__form form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    text-align: left;
    width: 100%;
}

.krk-landing__form form p {
    margin: 0;
    width: 100%;
}

.krk-landing__form form p:not(.forgetmenot):not(.submit) {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.krk-landing__form form label {
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.92);
}

.krk-landing__form form input[type="text"],
.krk-landing__form form input[type="password"],
.krk-landing__form form input[type="email"] {
    width: 100%;
    box-sizing: border-box;
    border-radius: 12px;
    border: 1px solid rgba(22, 35, 64, 0.22);
    background-color: rgba(255, 255, 255, 0.92);
    color: var(--krk-navy);
    padding: 14px 16px;
    font-size: 16px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 18px 32px rgba(22, 35, 64, 0.18);
    transition: border 0.15s ease, box-shadow 0.15s ease;
}

.krk-landing__form form input:focus {
    outline: none;
    border-color: var(--krk-sky);
    box-shadow: 0 0 0 4px rgba(0, 130, 202, 0.25), 0 22px 40px rgba(22, 35, 64, 0.2);
}

.krk-landing__form form .forgetmenot {
    display: flex;
    align-items: center;
    gap: 10px;
}

.krk-landing__form form .forgetmenot label {
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
    color: rgba(255, 255, 255, 0.85);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.krk-landing__form form .forgetmenot input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1px solid rgba(22, 35, 64, 0.3);
}

.krk-landing__form form p.submit {
    margin: 0;
}

.krk-landing__form form input[type="submit"] {
    background: linear-gradient(135deg, var(--krk-orange) 0%, #f3b000 100%);
    border: 0;
    border-radius: 999px;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    padding: 14px 22px;
    cursor: pointer;
    width: 100%;
    box-shadow: 0 24px 48px rgba(241, 135, 0, 0.38);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.krk-landing__form form input[type="submit"]:hover,
.krk-landing__form form input[type="submit"]:focus {
    transform: translateY(-1px);
    background: linear-gradient(135deg, #f3b000 0%, var(--krk-orange) 100%);
    box-shadow: 0 28px 62px rgba(241, 135, 0, 0.48);
    outline: none;
}

.krk-landing__links {
    margin-top: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.krk-landing__links a {
    color: var(--krk-cream);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.krk-landing__links a:hover {
    color: var(--krk-sky);
}

.krk-landing__footer {
    margin-top: 24px;
    font-size: 13px;
    color: rgba(249, 247, 244, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

@media (max-width: 540px) {
    .krk-landing__card {
        padding: 24px 20px;
        border-radius: 20px;
    }
}
