/* HL dealer login — visual-only patch */

.hl-auth {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 150px);
    padding: 36px 20px;
    background: #f3f4f6;
}

.hl-auth__card {
    width: 100%;
    max-width: 540px;
    padding: 38px 40px 32px;
    color: #fff;
    background: #111317;
    border: 1px solid #2b2f35;
    border-top: 4px solid #d7000f;
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .22);
}

.hl-auth__icon {
    display: block;
    width: 38px;
    height: 46px;
    margin: 0 auto 10px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: .9;
}

.hl-auth__title {
    margin: 0 0 26px;
    color: #fff;
    font-size: 30px;
    font-weight: 800;
    text-align: center;
}

.hl-auth__error {
    margin: 0 0 14px;
    padding: 11px 13px;
    color: #fff;
    background: rgba(215, 0, 15, .18);
    border: 1px solid rgba(255, 60, 70, .55);
    border-radius: 5px;
}

.hl-auth form {
    display: grid;
    gap: 13px;
}

.hl-auth__field {
    position: relative;
}

.hl-auth__field-icon {
    position: absolute;
    top: 50%;
    left: 17px;
    width: 18px;
    height: 18px;
    pointer-events: none;
    filter: brightness(0) invert(1);
    opacity: .55;
    transform: translateY(-50%);
}

.hl-auth__input {
    box-sizing: border-box;
    width: 100%;
    height: 56px;
    padding: 0 52px 0 48px;
    color: #fff;
    font: inherit;
    font-size: 16px;
    background: #202329;
    border: 1px solid #3a3f47;
    border-radius: 5px;
    outline: none;
}

.hl-auth__input::placeholder {
    color: #9ca2aa;
}

.hl-auth__input:focus {
    background: #25292f;
    border-color: #d7000f;
    box-shadow: 0 0 0 3px rgba(215, 0, 15, .16);
}

.hl-auth__eye {
    position: absolute;
    top: 50%;
    right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    color: #aeb4bc;
    cursor: pointer;
    background: transparent;
    border: 0;
    border-radius: 4px;
    transform: translateY(-50%);
}

.hl-auth__eye:hover,
.hl-auth__eye:focus-visible {
    color: #fff;
    background: rgba(255, 255, 255, .07);
    outline: none;
}

.hl-auth__eye svg {
    width: 22px;
    height: 22px;
}

.hl-auth__eye-slash {
    display: none;
}

.hl-auth__eye[aria-pressed="true"] .hl-auth__eye-open {
    display: none;
}

.hl-auth__eye[aria-pressed="true"] .hl-auth__eye-slash {
    display: block;
}

.hl-auth__submit {
    min-height: 56px;
    margin-top: 3px;
    color: #fff;
    font: inherit;
    font-size: 17px;
    font-weight: 800;
    cursor: pointer;
    background: #d7000f;
    border: 1px solid #d7000f;
    border-radius: 5px;
}

.hl-auth__submit:hover {
    background: #ed0011;
    border-color: #ed0011;
}

.hl-auth__submit-arrow {
    margin-left: 12px;
    filter: brightness(0) invert(1);
}

.hl-auth__forgot {
    display: block;
    width: max-content;
    margin: 22px auto 0;
    color: #b9bec5;
    text-decoration: none;
    border-bottom: 1px solid #666c74;
}

.hl-auth__forgot:hover,
.hl-auth__forgot:focus-visible {
    color: #fff;
    border-color: #d7000f;
    outline: none;
}

@media (max-width: 640px) {
    .hl-auth {
        min-height: auto;
        padding: 24px 14px;
    }

    .hl-auth__card {
        padding: 30px 20px 26px;
    }

    .hl-auth__title {
        font-size: 27px;
    }
}

/* HL DLR-001.1 dark page background - BEGIN */
html,
body {
    background: #111317;
}

.hl-auth {
    background: #111317 !important;
    background-image: radial-gradient(circle at center, #1b1e23 0%, #111317 70%) !important;
}
/* HL DLR-001.1 dark page background - END */
