﻿:root {
    --auth-ivory: var(--app-background);
    --auth-paper: var(--surface);
    --auth-parchment: var(--surface-muted);
    --auth-ink: var(--text-primary);
    --auth-muted: var(--text-muted);
    --auth-border: var(--border);
    --auth-wine: var(--brand-primary);
    --auth-wine-dark: #641d29;
    --auth-pale-wine: var(--brand-soft);
    --auth-error: var(--danger);
    --auth-success: #44624e;
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
    margin: 0;
}

body {
    color: var(--auth-ink);
    background: var(--auth-ivory);
    font-family: Arial, Helvetica, sans-serif;
}

button,
input {
    color: inherit;
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.auth-page {
    min-height: 100dvh;
}

.auth-header {
    position: fixed;
    z-index: 20;
    top: 0;
    right: 0;
    left: 0;
    height: 72px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 253, 250, 0.96);
    border-bottom: 1px solid var(--auth-border);
    backdrop-filter: blur(14px);
}

.auth-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--auth-ink);
    font: 500 25px Georgia, "Times New Roman", serif;
    text-decoration: none;
}

.auth-brand-mark {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: var(--brand-on-primary);
    background: linear-gradient( 145deg, #9b3342, var(--auth-wine) );
    border-radius: 9px;
    box-shadow: 0 7px 18px rgba(122, 38, 51, 0.2);
}

.auth-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 13px;
    color: var(--auth-muted);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
}

    .auth-back:hover {
        color: var(--auth-wine);
        background: var(--auth-pale-wine);
    }

.auth-layout {
    min-height: 100dvh;
    padding-top: 72px;
    display: grid;
    grid-template-columns: minmax(420px, 46%) 1fr;
}

.auth-story-panel {
    position: relative;
    overflow: hidden;
    padding: clamp(55px, 8vh, 100px) clamp(45px, 7vw, 110px);
    display: flex;
    align-items: center;
    color: var(--brand-on-primary);
    background: radial-gradient( circle at 15% 85%, rgba(255, 255, 255, 0.11), transparent 28% ), radial-gradient( circle at 80% 15%, rgba(255, 255, 255, 0.08), transparent 32% ), linear-gradient( 145deg, #6b202c, var(--brand-primary) 52%, #541720 );
}

.auth-story-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 570px;
}

.auth-eyebrow,
.auth-mobile-eyebrow {
    display: block;
    color: var(--brand-border);
    font-size: var(--font-size-small);
    font-weight: 800;
    letter-spacing: 0.18em;
}

.auth-story-panel h1 {
    margin: 22px 0 28px;
    color: var(--surface);
    font: 500 clamp(44px, 5vw, 70px) / 1.04 Georgia, "Times New Roman", serif;
    letter-spacing: -0.035em;
}

.auth-story-panel > div > p {
    max-width: 500px;
    margin: 0;
    color: rgba(255, 253, 250, 0.76);
    font: 18px / 1.7 Georgia, "Times New Roman", serif;
}

.auth-quotation {
    position: relative;
    max-width: 490px;
    margin-top: 70px;
    padding: 25px 0 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.auth-quote-mark {
    position: absolute;
    top: 14px;
    left: 0;
    color: rgba(255, 255, 255, 0.32);
    font: 62px Georgia, serif;
}

.auth-quotation blockquote {
    margin: 0 0 12px;
    color: rgba(255, 253, 250, 0.88);
    font: italic 17px / 1.55 Georgia, serif;
}

.auth-quotation cite {
    color: var(--brand-border);
    font-size: var(--font-size-small);
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.auth-decoration {
    position: absolute;
    right: -150px;
    bottom: -180px;
    width: 450px;
    height: 450px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

    .auth-decoration span {
        position: absolute;
        inset: 55px;
        border: 1px solid rgba(255, 255, 255, 0.07);
        border-radius: 50%;
    }

        .auth-decoration span:nth-child(2) {
            inset: 110px;
        }

        .auth-decoration span:nth-child(3) {
            inset: 165px;
        }

.auth-form-panel {
    min-width: 0;
    padding: 50px 30px 25px;
    display: flex;
    flex-direction: column;
    background: radial-gradient( circle at 90% 5%, rgba(122, 38, 51, 0.045), transparent 25% ), var(--auth-ivory);
}

.auth-form-container {
    width: min(100%, 480px);
    margin: auto;
    padding: 38px 0;
}

.auth-form-heading {
    margin-bottom: 30px;
}

.auth-mobile-eyebrow {
    margin-bottom: 12px;
    color: var(--auth-wine);
}

.auth-form-heading h2 {
    margin: 0 0 12px;
    color: var(--auth-ink);
    font: 500 40px / 1.1 Georgia, "Times New Roman", serif;
    letter-spacing: -0.025em;
}

.auth-form-heading p {
    margin: 0;
    color: var(--auth-muted);
    font: 15px / 1.6 Georgia, "Times New Roman", serif;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.auth-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .auth-field > label,
    .auth-label-row label {
        color: var(--auth-ink);
        font-size: 12px;
        font-weight: 700;
    }

.auth-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .auth-label-row a {
        color: var(--auth-wine);
        font-size: var(--font-size-small);
        font-weight: 700;
        text-decoration: none;
    }

        .auth-label-row a:hover {
            text-decoration: underline;
        }

.auth-input {
    height: 54px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    gap: 11px;
    background: var(--auth-paper);
    border: 1px solid var(--auth-border);
    border-radius: 7px;
    transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

    .auth-input:focus-within {
        background: #fff;
        border-color: var(--auth-wine);
        box-shadow: 0 0 0 4px rgba(122, 38, 51, 0.09);
    }

    .auth-input > span {
        width: 20px;
        color: #998d83;
        font-family: Georgia, serif;
        text-align: center;
    }

    .auth-input input {
        width: 100%;
        height: 100%;
        background: transparent;
        border: 0;
        outline: 0;
        font-size: 14px;
    }

        .auth-input input::placeholder {
            color: #aaa099;
        }

.auth-field-error {
    min-height: 15px;
    color: var(--auth-error);
    font-size: var(--font-size-small);
    font-weight: 600;
}

.auth-field-hint {
    margin: -2px 0 0;
    color: var(--auth-muted);
    font-size: var(--font-size-small);
    line-height: 1.45;
}

.auth-validation-summary {
    padding: 12px 14px;
    color: var(--auth-error);
    background: var(--danger-soft);
    border: 1px solid #e9bec5;
    border-radius: 6px;
    font-size: 12px;
    line-height: 1.5;
}

    .auth-validation-summary:empty {
        display: none;
    }

    .auth-validation-summary ul {
        margin: 0;
        padding-left: 18px;
    }

.auth-checkbox {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--auth-muted);
    font-size: var(--font-size-small);
    line-height: 1.5;
    cursor: pointer;
}

    .auth-checkbox input {
        position: absolute;
        width: 1px;
        height: 1px;
        opacity: 0;
    }

.auth-checkbox-box {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    display: grid;
    place-items: center;
    background: var(--auth-paper);
    border: 1px solid var(--auth-border);
    border-radius: 4px;
}

.auth-checkbox input:checked + .auth-checkbox-box {
    background: var(--auth-wine);
    border-color: var(--auth-wine);
}

    .auth-checkbox input:checked + .auth-checkbox-box::after {
        content: "✓";
        color: var(--brand-on-primary);
        font-size: 12px;
        font-weight: 800;
    }

.auth-checkbox input:focus-visible + .auth-checkbox-box {
    box-shadow: 0 0 0 4px rgba(122, 38, 51, 0.1);
}

.auth-terms a {
    color: var(--auth-wine);
    font-weight: 700;
}

.auth-submit,
.auth-secondary-button {
    min-height: 52px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.auth-submit {
    justify-content: space-between;
    color: var(--brand-on-primary);
    background: linear-gradient( 145deg, #8d2d3c, var(--auth-wine) );
    border: 0;
    box-shadow: 0 10px 24px rgba(122, 38, 51, 0.19);
}

    .auth-submit:hover {
        background: linear-gradient( 145deg, var(--auth-wine), var(--auth-wine-dark) );
        box-shadow: 0 13px 28px rgba(122, 38, 51, 0.26);
        transform: translateY(-1px);
    }

    .auth-submit:active {
        transform: translateY(0);
    }

.auth-secondary-button {
    color: var(--auth-wine);
    background: transparent;
    border: 1px solid var(--auth-border);
}

    .auth-secondary-button:hover {
        background: var(--auth-paper);
        border-color: #c9b8b2;
    }

.auth-divider {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 12px;
}

    .auth-divider span {
        height: 1px;
        background: var(--auth-border);
    }

    .auth-divider p {
        margin: 0;
        color: var(--auth-muted);
        font-size: var(--font-size-small);
    }

.auth-security-note {
    margin: 25px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: var(--auth-muted);
    font-size: var(--font-size-small);
}

    .auth-security-note span {
        color: var(--auth-success);
    }

.auth-footer {
    width: min(100%, 600px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #9a918a;
    font-size: var(--font-size-meta);
}

    .auth-footer nav {
        display: flex;
        gap: 16px;
    }

    .auth-footer a {
        color: inherit;
        text-decoration: none;
    }

        .auth-footer a:hover {
            color: var(--auth-wine);
        }

@media (max-width: 900px) {
    .auth-layout {
        grid-template-columns: 38% 1fr;
    }

    .auth-story-panel {
        padding: 50px 35px;
    }

        .auth-story-panel h1 {
            font-size: 43px;
        }

        .auth-story-panel > div > p {
            font-size: 16px;
        }

    .auth-quotation {
        margin-top: 45px;
    }
}

@media (max-width: 700px) {
    .auth-header {
        height: 60px;
        padding: 0 15px;
    }

    .auth-brand {
        font-size: 20px;
    }

    .auth-brand-mark {
        width: 34px;
        height: 34px;
    }

    .auth-back {
        font-size: 0;
    }

        .auth-back span {
            font-size: 22px;
        }

    .auth-layout {
        min-height: 100dvh;
        padding-top: 60px;
        display: block;
    }

    .auth-story-panel {
        display: none;
    }

    .auth-form-panel {
        min-height: calc(100dvh - 60px);
        padding: 25px 20px calc(20px + env(safe-area-inset-bottom));
    }

    .auth-form-container {
        padding: 15px 0 35px;
    }

    .auth-form-heading h2 {
        font-size: 34px;
    }

    .auth-input {
        height: 56px;
    }

    .auth-submit,
    .auth-secondary-button {
        min-height: 54px;
    }

    .auth-footer {
        margin-top: auto;
    }
}



/* =========================================================
   Account and profile pages
   ========================================================= */

.account-page {
    min-height: 100dvh;
    background: radial-gradient( circle at 90% 5%, rgba(122, 38, 51, 0.05), transparent 28% ), var(--auth-ivory);
}

.account-header {
    position: sticky;
    top: 0;
    z-index: 20;
    min-height: 72px;
    padding: 0 max(24px, env(safe-area-inset-right)) 0 max(24px, env(safe-area-inset-left));
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 253, 250, 0.96);
    border-bottom: 1px solid var(--auth-border);
    backdrop-filter: blur(16px);
}

.account-back {
    min-height: 42px;
    padding: 0 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--auth-muted);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

    .account-back:hover {
        color: var(--auth-wine);
        background: var(--auth-pale-wine);
    }

.account-layout {
    width: min(1180px, 100%);
    min-height: calc(100dvh - 72px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
}

.account-sidebar {
    padding: 48px 24px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--auth-border);
}

.account-sidebar-heading {
    padding: 0 12px 24px;
}

    .account-sidebar-heading > span,
    .profile-eyebrow,
    .profile-card > header > div > span {
        color: var(--auth-wine);
        font-size: var(--font-size-meta);
        font-weight: 800;
        letter-spacing: 0.15em;
    }

    .account-sidebar-heading h2 {
        margin: 6px 0 0;
        font: 500 25px Georgia, "Times New Roman", serif;
    }

.account-navigation {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

    .account-navigation a,
    .account-signout button {
        min-height: 47px;
        padding: 0 12px;
        display: flex;
        align-items: center;
        gap: 11px;
        color: var(--auth-muted);
        background: transparent;
        border: 0;
        border-radius: 6px;
        font-size: 12px;
        font-weight: 700;
        text-align: left;
        text-decoration: none;
    }

        .account-navigation a > span,
        .account-signout button > span {
            width: 23px;
            color: var(--auth-wine);
            font-size: 17px;
            text-align: center;
        }

        .account-navigation a:hover,
        .account-navigation a.active {
            color: var(--auth-wine);
            background: var(--auth-pale-wine);
        }

.account-signout {
    margin: auto 0 0;
    padding-top: 30px;
}

    .account-signout button {
        width: 100%;
        cursor: pointer;
    }

        .account-signout button:hover {
            color: var(--auth-error);
            background: var(--danger-soft);
        }

.account-main {
    min-width: 0;
    padding: 52px clamp(30px, 6vw, 80px) 90px;
}

.profile-heading {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.profile-avatar {
    width: 68px;
    height: 68px;
    flex: 0 0 68px;
    display: grid;
    place-items: center;
    color: var(--brand-on-primary);
    background: linear-gradient( 145deg, var(--brand-primary-hover), var(--auth-wine) );
    border-radius: 50%;
    box-shadow: 0 10px 24px rgba(122, 38, 51, 0.2);
    font: 500 21px Georgia, "Times New Roman", serif;
}

.profile-heading h1 {
    margin: 5px 0 7px;
    font: 500 clamp(32px, 5vw, 44px) Georgia, "Times New Roman", serif;
    letter-spacing: -0.025em;
}

.profile-heading p {
    max-width: 620px;
    margin: 0;
    color: var(--auth-muted);
    font: 14px/1.55 Georgia, "Times New Roman", serif;
}

.profile-form {
    max-width: 760px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.profile-card {
    overflow: hidden;
    background: var(--auth-paper);
    border: 1px solid var(--auth-border);
    border-radius: 9px;
    box-shadow: 0 8px 28px rgba(83, 67, 49, 0.045);
}

    .profile-card > header {
        min-height: 78px;
        padding: 16px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: var(--auth-parchment);
        border-bottom: 1px solid var(--auth-border);
    }

        .profile-card > header h2 {
            margin: 5px 0 0;
            font: 500 20px Georgia, "Times New Roman", serif;
        }

.profile-card-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: var(--auth-wine);
    background: var(--auth-pale-wine);
    border-radius: 50%;
    font-size: 17px;
}

.profile-card-body {
    padding: 22px;
    display: grid;
    gap: 20px;
}

.profile-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

    .profile-field > span:first-child {
        font-size: var(--font-size-small);
        font-weight: 800;
    }

    .profile-field input {
        width: 100%;
        min-height: 48px;
        padding: 0 14px;
        color: var(--auth-ink);
        background: #fff;
        border: 1px solid var(--auth-border);
        border-radius: 6px;
        outline: 0;
        font-size: 15px;
    }

        .profile-field input:focus {
            border-color: var(--auth-wine);
            box-shadow: 0 0 0 4px rgba(122, 38, 51, 0.08);
        }

        .profile-field input:disabled {
            color: var(--auth-muted);
            background: var(--auth-parchment);
            opacity: 1;
        }

    .profile-field small {
        color: var(--auth-muted);
        font-size: var(--font-size-small);
        line-height: 1.45;
    }

.profile-field-error,
.profile-validation {
    color: var(--auth-error);
    font-size: var(--font-size-small);
}

    .profile-validation:empty {
        display: none;
    }

    .profile-validation ul {
        margin: 0;
        padding: 12px 12px 12px 30px;
        background: var(--danger-soft);
        border: 1px solid var(--danger-border);
        border-radius: 6px;
    }

.profile-link-list {
    display: flex;
    flex-direction: column;
}

    .profile-link-list > a {
        min-height: 67px;
        padding: 13px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
        color: var(--auth-ink);
        border-bottom: 1px solid var(--border-soft);
        text-decoration: none;
    }

        .profile-link-list > a:last-child {
            border-bottom: 0;
        }

        .profile-link-list > a:hover {
            background: var(--surface-hover);
        }

        .profile-link-list > a > span {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

    .profile-link-list strong {
        font: 500 14px Georgia, "Times New Roman", serif;
    }

    .profile-link-list small {
        color: var(--auth-muted);
        font-size: var(--font-size-small);
    }

    .profile-link-list b {
        color: var(--auth-wine);
        font-size: 22px;
    }

.profile-actions {
    padding-top: 6px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 11px;
}

.profile-cancel,
.profile-save {
    min-height: 45px;
    padding: 0 19px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: var(--font-size-small);
    font-weight: 800;
    text-decoration: none;
}

.profile-cancel {
    color: var(--auth-muted);
    background: var(--auth-paper);
    border: 1px solid var(--auth-border);
}

.profile-save {
    color: var(--brand-on-primary);
    background: var(--auth-wine);
    border: 1px solid var(--auth-wine);
    cursor: pointer;
}

    .profile-save:hover {
        background: var(--auth-wine-dark);
    }

/* Give the other scaffolded Identity Manage forms basic styling. */
.account-main .form-control {
    width: 100%;
    min-height: 48px;
    margin-bottom: 8px;
    padding: 0 14px;
    background: #fff;
    border: 1px solid var(--auth-border);
    border-radius: 6px;
}

.account-main textarea.form-control {
    min-height: 120px;
    padding-top: 13px;
}

.account-main .btn {
    min-height: 43px;
    padding: 0 16px;
    border: 0;
    border-radius: 6px;
    cursor: pointer;
}

.account-main .btn-primary {
    color: var(--brand-on-primary);
    background: var(--auth-wine);
}

.account-main .btn-danger {
    color: var(--brand-on-primary);
    background: var(--auth-error);
}

.account-main .text-danger {
    color: var(--auth-error);
}

@media (max-width: 760px) {
    .account-header {
        min-height: 60px;
        padding: 0 max(14px, env(safe-area-inset-right)) 0 max(14px, env(safe-area-inset-left));
    }

        .account-header .auth-brand {
            font-size: 19px;
        }

        .account-header .auth-brand-mark {
            width: 34px;
            height: 34px;
        }

    .account-back {
        padding: 0 7px;
        font-size: 0;
    }

        .account-back span {
            font-size: 22px;
        }

    .account-layout {
        min-height: calc(100dvh - 60px);
        display: block;
    }

    .account-sidebar {
        padding: 10px 14px 0;
        border-right: 0;
        border-bottom: 1px solid var(--auth-border);
    }

    .account-sidebar-heading {
        display: none;
    }

    .account-navigation {
        overflow-x: auto;
        display: flex;
        flex-direction: row;
        gap: 4px;
        scrollbar-width: none;
    }

        .account-navigation::-webkit-scrollbar {
            display: none;
        }

        .account-navigation a {
            flex: 0 0 auto;
            min-height: 48px;
            padding: 0 12px;
            white-space: nowrap;
            border-radius: 5px 5px 0 0;
        }

            .account-navigation a.active {
                box-shadow: inset 0 -3px var(--auth-wine);
            }

            .account-navigation a > span {
                width: auto;
            }

    .account-signout {
        display: none;
    }

    .account-main {
        padding: 27px max(15px, env(safe-area-inset-right)) calc(75px + env(safe-area-inset-bottom)) max(15px, env(safe-area-inset-left));
    }

    .profile-heading {
        align-items: flex-start;
    }

    .profile-avatar {
        width: 54px;
        height: 54px;
        flex-basis: 54px;
        font-size: 17px;
    }

    .profile-heading h1 {
        font-size: 31px;
    }

    .profile-card-body {
        padding: 17px;
    }

    .profile-actions {
        position: sticky;
        bottom: 0;
        z-index: 5;
        margin: 0 -15px -30px;
        padding: 12px 15px calc(12px + env(safe-area-inset-bottom));
        background: rgba(251, 248, 242, 0.96);
        border-top: 1px solid var(--auth-border);
        backdrop-filter: blur(14px);
    }

        .profile-actions > * {
            flex: 1;
        }
}

/* Personal data and account deletion */

.personal-data-copy,
.delete-account-description {
    margin: 0 0 20px;
    color: var(--auth-muted);
    font: 13px/1.65 Georgia, serif;
}

.personal-data-download,
.personal-data-delete {
    min-height: 44px;
    padding: 0 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-on-primary);
    background: var(--auth-wine);
    border: 0;
    border-radius: 5px;
    font-size: var(--font-size-small);
    font-weight: 800;
    text-decoration: none;
}

.personal-data-danger {
    margin-top: 22px;
    border-color: #e2bcc2;
}

.personal-data-danger > header {
    background: #fff3f4;
}

.danger-card-icon,
.danger-avatar {
    background: var(--auth-error) !important;
}

.personal-data-delete {
    color: var(--auth-error);
    background: #fff;
    border: 1px solid var(--auth-error);
}

.danger-heading {
    margin-bottom: 22px;
}

.delete-account-warning {
    margin-bottom: 22px;
    padding: 16px 18px;
    color: #812032;
    background: var(--danger-soft);
    border: 1px solid var(--danger-border);
    border-radius: 7px;
}

.delete-account-warning strong {
    font: 500 16px Georgia, serif;
}

.delete-account-warning p {
    margin: 6px 0 0;
    font-size: var(--font-size-small);
    line-height: 1.55;
}

.delete-account-list {
    margin: 0 0 25px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    list-style: none;
}

.delete-account-list li {
    position: relative;
    padding: 11px 11px 11px 31px;
    color: var(--auth-muted);
    background: var(--auth-parchment);
    border-radius: 5px;
    font-size: var(--font-size-small);
    line-height: 1.4;
}

.delete-account-list li::before {
    content: "×";
    position: absolute;
    top: 10px;
    left: 12px;
    color: var(--auth-error);
    font-weight: 800;
}

.delete-account-form {
    display: flex;
    flex-direction: column;
    gap: 19px;
}

.delete-account-actions {
    padding-top: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.delete-account-actions a {
    min-height: 44px;
    padding: 0 17px;
    display: inline-flex;
    align-items: center;
    color: var(--auth-muted);
    text-decoration: none;
}

.delete-account-actions button {
    min-height: 44px;
    padding: 0 18px;
    color: var(--brand-on-primary);
    background: var(--auth-error);
    border: 0;
    border-radius: 5px;
    font-size: var(--font-size-small);
    font-weight: 800;
}

@media (max-width: 650px) {
    .delete-account-list {
        grid-template-columns: 1fr;
    }

    .delete-account-actions {
        align-items: stretch;
        flex-direction: column-reverse;
    }

    .delete-account-actions a,
    .delete-account-actions button,
    .personal-data-download,
    .personal-data-delete {
        width: 100%;
        min-height: 47px;
        justify-content: center;
    }
}
