

/* Start:/local/templates/lk_login/template_styles.css?17857538074967*/
/* Страница входа в личный кабинет Люксар */

:root {
    --lk-navy:        #0F172A;
    --lk-accent:      #0369A1;
    --lk-accent-hover:#075985;
    --lk-border:      #E2E8F0;
    --lk-text:        #0F172A;
    --lk-text-2:      #475569;
    --lk-text-3:      #94A3B8;
    --lk-danger:      #B91C1C;
    --lk-danger-bg:   #FEE2E2;
    --lk-font: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans",
               Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

body.lk-login-body {
    margin: 0;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    color: var(--lk-text);
    font-family: var(--lk-font);
    font-size: 15px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    background:
        radial-gradient(900px 520px at 15% -10%, #1E3A5F 0%, transparent 62%),
        radial-gradient(760px 460px at 95% 108%, #075985 0%, transparent 58%),
        var(--lk-navy);
}

:where(a, button, input):focus-visible {
    outline: 2px solid #38BDF8;
    outline-offset: 2px;
    border-radius: 6px;
}

.lk-login { width: 100%; max-width: 396px; }

.lk-login__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    margin-bottom: 22px;
    color: #fff;
}

.lk-login__mark {
    width: 38px; height: 38px;
    border-radius: 11px;
    background: linear-gradient(135deg, #38BDF8, #0369A1);
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 17px;
}

.lk-login__brand { font-size: 19px; font-weight: 600; letter-spacing: -.01em; }
.lk-login__tag { display: block; font-size: 12.5px; color: #94A3B8; font-weight: 400; }

.lk-login__box {
    background: #fff;
    border-radius: 16px;
    padding: 28px 26px 26px;
    box-shadow: 0 18px 44px rgba(2, 6, 23, .34);
}

.lk-login__heading {
    margin: 0 0 4px;
    font-size: 19px;
    font-weight: 620;
    letter-spacing: -.01em;
}

.lk-login__hint {
    margin: 0 0 20px;
    font-size: 13.5px;
    color: var(--lk-text-2);
}

.lk-field { margin-bottom: 14px; }

.lk-field__label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--lk-text-2);
}

.lk-input {
    width: 100%;
    min-height: 46px;
    padding: 10px 13px;
    border: 1px solid var(--lk-border);
    border-radius: 10px;
    background: #fff;
    color: var(--lk-text);
    font-family: inherit;
    font-size: 16px; /* 16px, иначе iOS зумит страницу при фокусе */
    transition: border-color .16s ease, box-shadow .16s ease;
}

.lk-input:hover { border-color: #CBD5E1; }

.lk-input:focus {
    outline: none;
    border-color: var(--lk-accent);
    box-shadow: 0 0 0 3px rgba(3, 105, 161, .16);
}

.lk-btn {
    width: 100%;
    min-height: 46px;
    margin-top: 6px;
    border: 0;
    border-radius: 10px;
    background: var(--lk-accent);
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 550;
    cursor: pointer;
    transition: background-color .16s ease;
}

.lk-btn:hover { background: var(--lk-accent-hover); }

.lk-login__error {
    display: flex;
    gap: 9px;
    margin-bottom: 16px;
    padding: 11px 13px;
    border-radius: 10px;
    background: var(--lk-danger-bg);
    color: var(--lk-danger);
    font-size: 13.5px;
}

.lk-login__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 14px 0 2px;
    font-size: 13px;
}

.lk-check {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--lk-text-2);
    cursor: pointer;
}

.lk-check input { width: 16px; height: 16px; accent-color: var(--lk-accent); }

.lk-login__link { color: var(--lk-accent); text-decoration: none; }
.lk-login__link:hover { text-decoration: underline; }

.lk-login__note {
    margin-top: 18px;
    text-align: center;
    color: #94A3B8;
    font-size: 12.5px;
}

/* Штатные компоненты Битрикса на страницах восстановления пароля */
.lk-login__box table { width: 100%; border-collapse: collapse; }
.lk-login__box table td { padding: 4px 0; }

.lk-login__box input[type="text"],
.lk-login__box input[type="email"],
.lk-login__box input[type="password"] {
    width: 100%;
    min-height: 46px;
    padding: 10px 13px;
    border: 1px solid var(--lk-border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 16px;
}

.lk-login__box input[type="submit"] {
    width: 100%;
    min-height: 46px;
    margin-top: 10px;
    border: 0;
    border-radius: 10px;
    background: var(--lk-accent);
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 550;
    cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { transition-duration: .01ms !important; }
}

/* End */
/* /local/templates/lk_login/template_styles.css?17857538074967 */
