:root {
    --account-bg: #071426;
    --account-panel: #0d2038;
    --account-border: rgba(255, 255, 255, .13);
    --account-text: #edf5ff;
    --account-muted: #abc0d7;
    --account-danger: #e74c3c;
    --account-danger-dark: #c0392b;
}

body.account-deletion {
    min-height: 100vh;
    margin: 0;
    background: radial-gradient(circle at top, #12345a 0, var(--account-bg) 55%);
    color: var(--account-text);
    font-family: "Lato", Arial, sans-serif;
}

.account-shell {
    width: min(680px, calc(100% - 32px));
    margin: 0 auto;
    padding: 42px 0;
}

.account-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    color: #fff;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
}

.account-brand img {
    width: 42px;
    height: 42px;
    border-radius: 10px;
}

.account-card {
    padding: 30px;
    border: 1px solid var(--account-border);
    border-radius: 18px;
    background: rgba(13, 32, 56, .94);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .32);
}

.account-card h1 {
    margin: 0 0 12px;
    font: 700 30px/1.2 "Montserrat", Arial, sans-serif;
}

.account-card h2 {
    margin: 28px 0 10px;
    font: 700 18px/1.3 "Montserrat", Arial, sans-serif;
}

.account-card p,
.account-card li {
    color: var(--account-muted);
    font-size: 16px;
    line-height: 1.55;
}

.account-card ul { padding-left: 22px; }

.account-warning {
    margin: 22px 0;
    padding: 16px;
    border-left: 4px solid var(--account-danger);
    border-radius: 8px;
    background: rgba(231, 76, 60, .12);
}

.account-form label {
    display: block;
    margin: 18px 0 7px;
    font-weight: 700;
}

.account-form input {
    box-sizing: border-box;
    width: 100%;
    min-height: 48px;
    padding: 11px 13px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 9px;
    background: #07172a;
    color: #fff;
    font-size: 16px;
}

.account-form input:focus {
    border-color: #79b8ff;
    outline: 3px solid rgba(121, 184, 255, .2);
}

.account-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.account-button {
    display: inline-flex;
    min-height: 46px;
    padding: 0 20px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 9px;
    background: #2d79c7;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
}

.account-button:hover,
.account-button:focus {
    background: #2365a6;
    color: #fff;
    text-decoration: none;
}

.account-button-danger { background: var(--account-danger); }
.account-button-danger:hover,
.account-button-danger:focus { background: var(--account-danger-dark); }
.account-button[disabled] { cursor: wait; opacity: .65; }

.account-result {
    display: none;
    margin-top: 18px;
    padding: 14px;
    border-radius: 8px;
}

.account-result.is-visible { display: block; }
.account-result.is-success { background: rgba(46, 204, 113, .16); color: #c9f7db; }
.account-result.is-error { background: rgba(231, 76, 60, .16); color: #ffd6d2; }
.account-note { margin-top: 22px; font-size: 14px !important; }

@media (max-width: 600px) {
    .account-shell { padding: 22px 0; }
    .account-card { padding: 22px 18px; }
    .account-card h1 { font-size: 25px; }
    .account-actions { flex-direction: column; }
    .account-button { width: 100%; box-sizing: border-box; }
}
