﻿html,
body {
    min-height: 100%;
    background: #ffffff !important;
}

.kiosk-login-layout {
    background: #ffffff !important;
}

.kiosk-login-page {
    min-height: 100vh;
    width: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 35px 45px;
    font-family: "Segoe UI", Arial, sans-serif;
}

.kiosk-login-shell {
    width: min(1680px, 100%);
    min-height: 760px;
    display: grid;
    grid-template-columns: 0.72fr 1.35fr;
    gap: 42px;
    align-items: center;
    background: #ffffff;
}

.kiosk-login-left {
    min-height: 650px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 40px;
}

.kiosk-login-brand {
    text-align: center;
    margin-bottom: 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.kiosk-login-logo {
    width: 127px;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto 26px auto;
}

.kiosk-login-brand h1 {
    margin: 0;
    color: #c79a2b;
    font-size: 18px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 1.3;
}

.kiosk-login-fields {
    width: min(420px, 100%);
}

.kiosk-input-group {
    width: 100%;
    margin-bottom: 32px;
    position: relative;
}

.kiosk-login-input {
    width: 100%;
    height: 56px;
    border: 1.5px solid #b9b9b9;
    border-radius: 5px;
    background: #ffffff;
    color: #222222;
    font-size: 17px;
    font-weight: 700;
    padding: 0 18px;
    outline: none;
    box-shadow: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

    .kiosk-login-input::placeholder {
        color: #333333;
        opacity: 1;
        font-weight: 700;
    }

    .kiosk-login-input:focus {
        border-color: #c79a2b;
        box-shadow: 0 0 0 3px rgba(199, 154, 43, 0.14);
    }

.kiosk-password-group .kiosk-login-input {
    padding-right: 55px;
}

.kiosk-password-toggle {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    color: #555555;
    font-size: 19px;
    cursor: pointer;
    padding: 6px;
}

.kiosk-validation-wrap {
    min-height: 20px;
    margin-top: -14px;
    margin-bottom: 18px;
    text-align: center;
}

    .kiosk-validation-wrap .field-validation-error {
        color: #cc0000;
        font-size: 13px;
        font-weight: 600;
    }

.kiosk-login-button {
    width: 100%;
    height: 57px;
    border: 0;
    border-radius: 7px;
    background: #050505;
    color: #ffffff;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.3px;
    cursor: pointer;
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.18);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

    .kiosk-login-button:hover {
        transform: translateY(-1px);
        box-shadow: 0 10px 18px rgba(0, 0, 0, 0.22);
    }

.kiosk-login-links {
    margin-top: 36px;
    text-align: center;
    color: #c79a2b;
    font-size: 14px;
    font-weight: 600;
}

    .kiosk-login-links a {
        color: #c79a2b !important;
        text-decoration: underline;
        cursor: pointer;
    }

    .kiosk-login-links span {
        color: #c79a2b;
        margin: 0 4px;
    }

/* UPDATED SEAL SECTION */
.kiosk-login-seals {
    margin-top: 115px;
    text-align: center;
}

.kiosk-seal-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.kiosk-sectigo-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 10px;
}

.kiosk-sectigo-logo {
    width: 104px;
    height: auto;
    object-fit: contain;
    display: block;
}

.kiosk-dpo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.kiosk-dpo-logo {
    width: 43px;
    height: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 9px;
}

.kiosk-dpo-wrap span {
    color: #9a9a9a;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
}

.kiosk-login-right {
    width: 100%;
    min-height: 780px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kiosk-login-photo {
    width: 100%;
    height: 780px;
    max-height: 82vh;
    object-fit: cover;
    object-position: center center;
    border-radius: 46px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
}

/* Responsive */
@media (max-width: 1200px) {
    .kiosk-login-shell {
        gap: 34px;
        grid-template-columns: 0.85fr 1.15fr;
    }

    .kiosk-login-right {
        min-height: 650px;
    }

    .kiosk-login-photo {
        height: 650px;
        border-radius: 34px;
    }
}

@media (max-width: 900px) {
    .kiosk-login-page {
        padding: 24px 18px;
    }

    .kiosk-login-shell {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .kiosk-login-left {
        min-height: auto;
        padding: 36px 20px;
    }

    .kiosk-login-right {
        min-height: 360px;
    }

    .kiosk-login-photo {
        max-height: 420px;
        border-radius: 28px;
    }

    .kiosk-login-seals {
        margin-top: 60px;
    }

    .kiosk-seal-row {
        gap: 12px;
    }
}

@media (max-width: 520px) {
    .kiosk-login-page {
        padding: 16px 14px;
    }

    .kiosk-login-right {
        display: none;
    }

    .kiosk-login-logo {
        width: 72px;
    }

    .kiosk-login-brand h1 {
        font-size: 17px;
    }

    .kiosk-login-input,
    .kiosk-login-button {
        height: 52px;
        font-size: 15px;
    }

    .kiosk-login-seals {
        margin-top: 44px;
    }

    .kiosk-sectigo-logo {
        width: 92px;
    }

    .kiosk-dpo-logo {
        width: 38px;
    }

    .kiosk-dpo-wrap span {
        font-size: 13px;
    }
}
