:root {
    color-scheme: dark;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --bg: #111c30;
    --bg-soft: #182741;
    --panel: rgba(31, 47, 73, .88);
    --panel-solid: #223552;
    --panel-soft: #293e5d;
    --line: rgba(197, 213, 235, .16);
    --line-strong: rgba(203, 218, 239, .28);
    --text: #f7faff;
    --muted: #b3c2d7;
    --primary: #7c5cff;
    --primary-2: #3c7ef3;
    --cyan: #27c3d8;
    --success: #42d77d;
    --danger: #ff6474;
    --warning: #f3bd4f;
    --radius: 18px;
    --shadow: 0 20px 48px rgba(6, 17, 35, .24);
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
    background: var(--bg);
}

body {
    min-height: 100vh;
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(circle at 8% 0%, rgba(124, 92, 255, .22), transparent 34rem),
        radial-gradient(circle at 92% 5%, rgba(39, 195, 216, .16), transparent 30rem),
        linear-gradient(180deg, #1a2944 0%, #142139 42%, #111c30 100%);
    background-attachment: fixed;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: .28;
    background-image:
        linear-gradient(rgba(255, 255, 255, .026) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .026) 1px, transparent 1px);
    background-size: 38px 38px;
    mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

button,
input,
select {
    font: inherit;
}

button,
a,
input,
select {
    -webkit-tap-highlight-color: transparent;
}

button,
a {
    touch-action: manipulation;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 9px;
    font-size: clamp(1.8rem, 4vw, 2.55rem);
    line-height: 1.06;
    letter-spacing: -.04em;
}

h2 {
    margin-bottom: 8px;
    font-size: clamp(1.18rem, 2.4vw, 1.55rem);
    line-height: 1.2;
    letter-spacing: -.025em;
}

h3 {
    margin-bottom: 16px;
    font-size: 1.04rem;
}

p {
    line-height: 1.62;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 30;
    min-height: 72px;
    padding: 13px max(18px, calc((100vw - 1240px) / 2 + 18px));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    background: linear-gradient(112deg, rgba(67, 82, 142, .96), rgba(49, 93, 153, .96) 50%, rgba(30, 108, 128, .94));
    box-shadow: 0 14px 36px rgba(8, 20, 43, .24);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: #fff;
    text-decoration: none;
}

.brand strong {
    font-size: 1.05rem;
    letter-spacing: .005em;
}

.brand-large strong {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.brand-mark {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    border-radius: 11px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .18)),
        linear-gradient(135deg, var(--primary), var(--cyan));
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .28), 0 9px 24px rgba(28, 64, 130, .3);
}

.top-actions {
    display: flex;
    align-items: center;
    gap: 9px;
}

.account-chip {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-right: 4px;
    line-height: 1.15;
}

.account-chip span {
    max-width: 190px;
    overflow: hidden;
    color: #fff;
    font-size: .88rem;
    font-weight: 760;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.account-chip small {
    margin-top: 3px;
    color: #d7e7ff;
    font-size: .68rem;
}

.top-link {
    padding: 9px 12px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 10px;
    background: rgba(255, 255, 255, .08);
    text-decoration: none;
    font-size: .82rem;
    font-weight: 760;
    transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.top-link:hover {
    border-color: rgba(255, 255, 255, .38);
    background: rgba(255, 255, 255, .14);
    transform: translateY(-1px);
}

.wrap {
    position: relative;
    z-index: 1;
    width: min(1240px, 100%);
    margin: 26px auto;
    padding: 0 18px;
}

.card {
    position: relative;
    margin-bottom: 20px;
    padding: 24px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .055), transparent 44%),
        var(--panel);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07);
}

.card > * {
    position: relative;
    z-index: 1;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 8px;
    color: #a9c8ff;
    font-size: .68rem;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.muted {
    color: var(--muted);
    font-size: .82rem;
    line-height: 1.5;
}

.hero-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 170px;
    background:
        radial-gradient(circle at 88% 18%, rgba(60, 126, 243, .28), transparent 25rem),
        linear-gradient(125deg, rgba(61, 77, 128, .92), rgba(37, 69, 112, .9) 55%, rgba(27, 93, 111, .86));
}

.hero-copy {
    max-width: 690px;
}

.hero-copy p {
    max-width: 650px;
    margin-bottom: 0;
    color: #d6e3f6;
}

.summary {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.summary .mini {
    min-width: 112px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 14px;
    background: rgba(12, 27, 50, .28);
    backdrop-filter: blur(10px);
}

.summary strong {
    display: block;
    margin-bottom: 5px;
    color: #fff;
    font-size: 1.55rem;
    line-height: 1;
}

.summary span {
    color: #c9d9ee;
    font-size: .72rem;
}

.section-nav {
    position: sticky;
    top: 84px;
    z-index: 15;
    display: flex;
    gap: 8px;
    margin: -5px 0 20px;
    padding: 8px;
    width: fit-content;
    max-width: 100%;
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: rgba(25, 42, 68, .86);
    box-shadow: 0 10px 30px rgba(5, 18, 40, .16);
    backdrop-filter: blur(14px);
}

.section-nav a {
    padding: 8px 12px;
    color: #dce9fb;
    border-radius: 9px;
    text-decoration: none;
    font-size: .76rem;
    font-weight: 760;
    white-space: nowrap;
}

.section-nav a:hover {
    background: rgba(255, 255, 255, .08);
}

.section-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 19px;
}

.section-head p {
    margin-bottom: 0;
}

.soft-badge {
    flex: 0 0 auto;
    padding: 7px 10px;
    color: #dbe8fb;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    background: rgba(17, 33, 57, .36);
    font-size: .7rem;
    font-weight: 760;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field label {
    color: #edf4ff;
    font-size: .82rem;
    font-weight: 730;
}

.field input,
.field select,
.grant-form select,
.reset-password-form input {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    color: var(--text);
    border: 1px solid var(--line-strong);
    border-radius: 11px;
    outline: none;
    background: rgba(18, 33, 56, .68);
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.field input::placeholder,
.reset-password-form input::placeholder {
    color: #8296b2;
}

.field input:hover,
.field select:hover,
.grant-form select:hover,
.reset-password-form input:hover {
    border-color: rgba(203, 218, 239, .45);
}

.field input:focus,
.field select:focus,
.grant-form select:focus,
.reset-password-form input:focus {
    border-color: rgba(116, 166, 255, .9);
    background: rgba(20, 39, 66, .92);
    box-shadow: 0 0 0 4px rgba(60, 126, 243, .17);
}

.field input[type="file"] {
    padding: 7px;
}

.field input[type="file"]::file-selector-button {
    margin-right: 9px;
    padding: 8px 10px;
    color: #fff;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    background: linear-gradient(135deg, #526783, #354a69);
}

select option {
    color: #f7faff;
    background: #223552;
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 17px;
}

.btn,
.copy-code {
    border: 0;
    cursor: pointer;
    color: #fff;
    text-decoration: none;
    font-weight: 780;
    line-height: 1;
    transition: transform .18s ease, filter .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.btn {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 11px 16px;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    box-shadow: 0 10px 22px rgba(60, 80, 190, .24);
}

.btn:hover:not(:disabled),
.copy-code:hover:not(:disabled) {
    filter: brightness(1.08);
    transform: translateY(-1px);
}

.btn:active:not(:disabled),
.copy-code:active:not(:disabled) {
    transform: translateY(0);
}

.btn.secondary {
    background: linear-gradient(135deg, #5d718e, #405573);
    box-shadow: none;
}

.btn.danger {
    background: linear-gradient(135deg, #e75264, #b72f43);
    box-shadow: none;
}

.btn.small {
    min-height: 34px;
    padding: 8px 10px;
    border-radius: 9px;
    font-size: .72rem;
}

.btn-wide {
    width: 100%;
}

.btn:disabled {
    cursor: not-allowed;
    opacity: .38;
    filter: grayscale(.2);
    box-shadow: none;
}

.notice {
    position: relative;
    z-index: 2;
    margin-bottom: 14px;
    padding: 13px 15px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-size: .86rem;
    line-height: 1.5;
    box-shadow: 0 12px 26px rgba(7, 20, 42, .16);
}

.notice.success {
    color: #c8f9d9;
    border-color: rgba(66, 215, 125, .28);
    background: rgba(28, 112, 67, .38);
}

.notice.error {
    color: #ffd1d6;
    border-color: rgba(255, 100, 116, .28);
    background: rgba(143, 42, 58, .4);
}

.notice.info {
    color: #d8e8ff;
    border-color: rgba(80, 150, 255, .3);
    background: rgba(43, 84, 149, .38);
}

.code-result {
    display: grid;
    grid-template-columns: minmax(240px, .75fr) minmax(300px, 1.25fr);
    align-items: center;
    gap: 22px;
}

.code-result p {
    margin-bottom: 0;
}

.code-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 17px;
    color: #fff;
    border: 1px solid rgba(145, 170, 255, .28);
    border-radius: 13px;
    background: linear-gradient(135deg, rgba(124, 92, 255, .22), rgba(60, 126, 243, .12)), #1a2b49;
    font-size: clamp(1.05rem, 3vw, 1.45rem);
    font-weight: 880;
    letter-spacing: .1em;
    word-break: break-word;
}

.access-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.access-info h2,
.access-info p {
    margin-bottom: 4px;
}

.access-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--primary), var(--cyan));
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(55, 95, 180, .25);
}

.table-scroll {
    width: 100%;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(17, 32, 55, .4);
}

table {
    width: 100%;
    min-width: 1050px;
    border-collapse: collapse;
}

th,
td {
    padding: 13px 12px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--line);
}

th {
    position: sticky;
    top: 0;
    z-index: 2;
    color: #a9bad2;
    background: rgba(27, 44, 70, .97);
    font-size: .66rem;
    font-weight: 850;
    letter-spacing: .075em;
    text-transform: uppercase;
}

tbody tr {
    transition: background .18s ease;
}

tbody tr:hover {
    background: rgba(255, 255, 255, .035);
}

tbody tr:last-child td {
    border-bottom: 0;
}

.empty-state {
    padding: 32px;
    color: var(--muted);
    text-align: center;
}

.file-name {
    max-width: 240px;
    margin-top: 4px;
    overflow-wrap: anywhere;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 9px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: .7rem;
    font-weight: 820;
    white-space: nowrap;
}

.badge::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 10px currentColor;
}

.badge.available {
    color: #91f2b5;
    border-color: rgba(66, 215, 125, .24);
    background: rgba(31, 115, 68, .32);
}

.badge.in_use {
    color: #ffb2bb;
    border-color: rgba(255, 100, 116, .24);
    background: rgba(137, 42, 57, .32);
}

.badge.expired {
    color: #d3deed;
    border-color: rgba(179, 194, 215, .2);
    background: rgba(75, 92, 117, .4);
}

.device-id {
    max-width: 230px;
    margin-top: 3px;
    overflow-wrap: anywhere;
}

.table-code {
    display: flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

.table-code code,
td > code {
    display: inline-block;
    padding: 7px 9px;
    color: #d8cbff;
    border: 1px solid rgba(152, 129, 255, .3);
    border-radius: 8px;
    background: rgba(69, 52, 130, .34);
    font-size: .8rem;
    font-weight: 850;
    letter-spacing: .04em;
}

.copy-code {
    padding: 8px 9px;
    border-radius: 8px;
    background: linear-gradient(135deg, #3c7ef3, #745cff);
    font-size: .67rem;
}

.actions {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
}

.inline {
    display: inline;
}

.grant-form {
    display: grid;
    grid-template-columns: minmax(170px, 1fr) auto;
    gap: 7px;
    margin-top: 9px;
}

.grant-form select {
    min-height: 34px;
    padding: 6px 8px;
    font-size: .72rem;
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(260px, .72fr) minmax(420px, 1.55fr);
    gap: 18px;
    align-items: start;
}

.form-panel {
    display: grid;
    gap: 13px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: rgba(22, 39, 65, .52);
}

.form-panel h3 {
    margin-bottom: 2px;
}

.user-list {
    display: grid;
    gap: 11px;
}

.empty-panel {
    padding: 28px;
    color: var(--muted);
    border: 1px dashed var(--line-strong);
    border-radius: 14px;
    text-align: center;
}

.user-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(24, 42, 69, .56);
}

.user-card-main {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: #fff;
    background: linear-gradient(135deg, #6d5de7, #3e8dce);
    font-weight: 850;
}

.user-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 3px;
}

.status-dot {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 7px;
    border-radius: 999px;
    font-size: .63rem;
    font-weight: 800;
}

.status-dot::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
}

.status-dot.active {
    color: #9af0ba;
    background: rgba(39, 133, 80, .35);
}

.status-dot.blocked {
    color: #ffb5bd;
    background: rgba(142, 48, 62, .36);
}

.user-actions {
    display: flex;
    justify-content: flex-end;
    gap: 7px;
    flex-wrap: wrap;
}

.reset-password-form {
    display: flex;
    gap: 6px;
}

.reset-password-form input {
    width: 125px;
    min-height: 34px;
    padding: 7px 9px;
    font-size: .72rem;
}

.password-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(180px, 1fr)) auto;
    align-items: end;
    gap: 13px;
}

.footer {
    padding: 18px 10px 30px;
    color: #8297b4;
    text-align: center;
    font-size: .75rem;
}

.login-page {
    display: grid;
    place-items: center;
    padding: 28px;
}

.login-shell {
    position: relative;
    z-index: 1;
    width: min(1080px, 100%);
    min-height: min(680px, calc(100vh - 56px));
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 26px;
    background: rgba(31, 48, 75, .82);
    box-shadow: 0 30px 80px rgba(5, 16, 36, .35);
    backdrop-filter: blur(20px);
}

.login-intro {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 50px;
    padding: clamp(30px, 6vw, 64px);
    background:
        radial-gradient(circle at 18% 12%, rgba(255, 255, 255, .16), transparent 18rem),
        linear-gradient(145deg, rgba(92, 74, 190, .9), rgba(52, 104, 167, .9) 56%, rgba(30, 131, 147, .86));
}

.login-intro h1 {
    max-width: 600px;
    font-size: clamp(2rem, 5vw, 3.45rem);
}

.login-intro p {
    max-width: 570px;
    margin-bottom: 0;
    color: #dce9fa;
    font-size: clamp(.95rem, 1.5vw, 1.08rem);
}

.login-points {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.login-points span {
    padding: 8px 11px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    color: #eef6ff;
    background: rgba(255, 255, 255, .08);
    font-size: .72rem;
    font-weight: 720;
}

.login-card {
    margin: 0;
    padding: clamp(28px, 5vw, 52px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 0;
    border-radius: 0;
    background: rgba(35, 53, 82, .95);
    box-shadow: none;
}

.login-card-head {
    margin-bottom: 22px;
}

.login-card-head p {
    margin-bottom: 0;
}

.login-form {
    display: grid;
    gap: 16px;
}

:focus-visible {
    outline: 3px solid rgba(128, 174, 255, .88);
    outline-offset: 2px;
}

@media (max-width: 980px) {
    .hero-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .summary {
        width: 100%;
        justify-content: flex-start;
    }

    .split-layout {
        grid-template-columns: 1fr;
    }

    .password-grid {
        grid-template-columns: repeat(2, minmax(180px, 1fr));
    }

    .login-shell {
        grid-template-columns: 1fr;
    }

    .login-intro {
        min-height: 330px;
        gap: 34px;
    }
}

@media (max-width: 760px) {
    .topbar {
        position: relative;
        min-height: 64px;
        padding: 12px 14px;
    }

    .account-chip {
        display: none;
    }

    .top-link {
        padding: 8px 10px;
        font-size: .76rem;
    }

    .wrap {
        margin-top: 16px;
        padding: 0 11px;
    }

    .card {
        padding: 17px;
        border-radius: 15px;
    }

    .section-nav {
        position: relative;
        top: auto;
        width: 100%;
    }

    .section-head,
    .form-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .grid,
    .password-grid {
        grid-template-columns: 1fr;
    }

    .summary {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .summary .mini {
        min-width: 0;
        padding: 11px;
    }

    .code-result {
        grid-template-columns: 1fr;
    }

    .code-box {
        align-items: stretch;
        flex-direction: column;
        letter-spacing: .07em;
    }

    .table-scroll {
        overflow: visible;
        border: 0;
        background: transparent;
    }

    table,
    thead,
    tbody,
    tr,
    th,
    td {
        display: block;
        width: 100%;
    }

    table {
        min-width: 0;
    }

    thead {
        display: none;
    }

    tbody {
        display: grid;
        gap: 13px;
    }

    tbody tr {
        overflow: hidden;
        border: 1px solid var(--line);
        border-radius: 14px;
        background: rgba(28, 47, 75, .72);
        box-shadow: 0 14px 30px rgba(6, 19, 41, .16);
    }

    td {
        display: grid;
        grid-template-columns: minmax(92px, 31%) 1fr;
        gap: 11px;
        padding: 11px 13px;
        border-bottom: 1px solid var(--line);
        overflow-wrap: anywhere;
    }

    td::before {
        content: attr(data-label);
        color: #8fa4c0;
        font-size: .63rem;
        font-weight: 850;
        letter-spacing: .055em;
        text-transform: uppercase;
    }

    td:last-child {
        border-bottom: 0;
    }

    td[colspan] {
        display: block;
    }

    td[colspan]::before {
        display: none;
    }

    .table-code {
        align-items: flex-start;
        flex-wrap: wrap;
        white-space: normal;
    }

    .actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }

    .actions form,
    .actions .btn {
        width: 100%;
    }

    .grant-form {
        grid-template-columns: 1fr;
    }

    .user-card {
        align-items: stretch;
        flex-direction: column;
    }

    .user-actions {
        justify-content: flex-start;
    }

    .login-page {
        padding: 12px;
    }

    .login-shell {
        min-height: calc(100vh - 24px);
        border-radius: 18px;
    }

    .login-intro {
        min-height: 280px;
        padding: 27px;
    }

    .login-intro h1 {
        font-size: clamp(1.8rem, 9vw, 2.55rem);
    }

    .login-card {
        padding: 27px;
    }
}

@media (max-width: 470px) {
    .brand strong {
        max-width: 155px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .summary {
        gap: 7px;
    }

    .summary .mini {
        padding: 9px;
    }

    .summary strong {
        font-size: 1.22rem;
    }

    .summary span {
        font-size: .62rem;
    }

    td {
        grid-template-columns: 80px 1fr;
        gap: 8px;
    }

    .actions {
        grid-template-columns: 1fr;
    }

    .reset-password-form {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr auto;
    }

    .reset-password-form input {
        width: 100%;
    }

    .user-actions > form:not(.reset-password-form),
    .user-actions > form:not(.reset-password-form) .btn {
        width: 100%;
    }

    .login-points {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}
