/* =========================================================
   AZhai Sub
   阿宅二级域名 · Admin UI
   Clean / Soft / Anime-inspired
   ========================================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #fffafb;
    --bg-soft: #fff5f8;
    --card: rgba(255, 255, 255, .92);
    --white: #ffffff;

    --text: #29252a;
    --text-light: #777078;
    --text-muted: #aaa1a8;

    --pink: #ff8faf;
    --pink-dark: #f2769a;
    --pink-light: #ffe5ed;
    --pink-soft: #fff0f4;

    --green: #69c69a;
    --green-soft: #eaf9f1;

    --blue: #78aee8;
    --blue-soft: #edf5ff;

    --yellow: #efbd62;
    --yellow-soft: #fff7e7;

    --red: #ed7d88;
    --red-soft: #fff0f1;

    --border: #f2e7eb;
    --border-light: #f8eef1;

    --shadow:
        0 12px 35px rgba(55, 31, 42, .055);

    --shadow-hover:
        0 18px 45px rgba(55, 31, 42, .09);

    --radius: 18px;
    --radius-small: 12px;

    --container: 1160px;
}

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

body {
    min-height: 100vh;
    background:
        radial-gradient(
            circle at 10% 0%,
            rgba(255, 210, 222, .32),
            transparent 28%
        ),
        radial-gradient(
            circle at 95% 10%,
            rgba(255, 230, 238, .35),
            transparent 25%
        ),
        var(--bg);

    color: var(--text);

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        "PingFang SC",
        "Hiragino Sans GB",
        "Microsoft YaHei",
        sans-serif;

    font-size: 14px;
    line-height: 1.7;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

img {
    max-width: 100%;
}

::selection {
    background: var(--pink-light);
    color: var(--pink-dark);
}


/* =========================================================
   Layout
   ========================================================= */

.container {
    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin: 0 auto;
}

.admin-main {
    padding: 42px 0 70px;
    min-height: calc(100vh - 150px);
}


/* =========================================================
   Header
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;

    background: rgba(255, 255, 255, .84);
    border-bottom: 1px solid rgba(242, 231, 235, .8);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.header-inner {
    min-height: 76px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    font-size: 18px;
    font-weight: 800;
    letter-spacing: -.4px;

    color: var(--text);

    white-space: nowrap;
}

.logo::before {
    content: "🌸";

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--pink-soft);
    border-radius: 13px;

    font-size: 18px;

    box-shadow:
        inset 0 0 0 1px rgba(255, 143, 175, .08);
}

.logo small {
    display: block;

    margin-left: 1px;

    color: var(--text-muted);

    font-size: 11px;
    font-weight: 500;
    letter-spacing: .2px;
}

.site-header nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 5px;

    flex-wrap: wrap;
}

.site-header nav a {
    position: relative;

    padding: 8px 13px;

    color: var(--text-light);

    border-radius: 10px;

    font-size: 13px;
    font-weight: 600;

    transition:
        color .2s ease,
        background .2s ease,
        transform .2s ease;
}

.site-header nav a:hover {
    color: var(--pink-dark);
    background: var(--pink-soft);

    transform: translateY(-1px);
}

.site-header nav a:last-child {
    margin-left: 5px;
}

.site-header nav a:last-child:hover {

    transform: translateY(-1px);
}

/* =========================================================
   Page headings
   ========================================================= */

.page-title,
.admin-main > h1 {
    margin-bottom: 24px;

    font-size: 26px;
    line-height: 1.35;
    font-weight: 800;

    letter-spacing: -.7px;
}

.page-title small {
    display: block;

    margin-top: 5px;

    color: var(--text-muted);

    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0;
}


/* =========================================================
   Cards
   ========================================================= */

.card {
    margin-bottom: 22px;
    padding: 27px;

    background: var(--card);

    border: 1px solid var(--border-light);
    border-radius: var(--radius);

    box-shadow: var(--shadow);

    transition:
        transform .22s ease,
        box-shadow .22s ease;
}

.card:hover {
    box-shadow: var(--shadow-hover);
}

.card h1 {
    margin-bottom: 7px;

    font-size: 22px;
    line-height: 1.4;
    font-weight: 800;

    letter-spacing: -.5px;
}

.card h2 {
    margin-bottom: 15px;

    font-size: 18px;
    font-weight: 750;
}

.card h3 {
    margin-bottom: 10px;

    font-size: 15px;
    font-weight: 700;
}

.card p {
    color: var(--text-light);
}

.card + .card {
    margin-top: 20px;
}


/* =========================================================
   Stats
   ========================================================= */

.stats-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 17px;

    margin-bottom: 24px;
}

.stat-card {
    position: relative;

    padding: 22px 21px;

    background: rgba(255, 255, 255, .94);

    border: 1px solid var(--border-light);
    border-radius: 17px;

    box-shadow: 0 8px 28px rgba(55, 31, 42, .045);

    overflow: hidden;

    transition:
        transform .22s ease,
        box-shadow .22s ease;
}

.stat-card::after {
    content: "";

    position: absolute;

    width: 90px;
    height: 90px;

    right: -30px;
    top: -35px;

    border-radius: 50%;

    background: var(--pink-soft);

    opacity: .8;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.stat-card .label {
    position: relative;
    z-index: 1;

    color: var(--text-light);

    font-size: 12px;
    font-weight: 600;
}

.stat-card .value {
    position: relative;
    z-index: 1;

    margin-top: 3px;

    font-size: 28px;
    line-height: 1.25;
    font-weight: 800;

    letter-spacing: -1px;
}

.stat-card .desc {
    position: relative;
    z-index: 1;

    margin-top: 5px;

    color: var(--text-muted);

    font-size: 11px;
}


/* =========================================================
   Quick links
   ========================================================= */

.quick-links {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 13px;

    margin-bottom: 24px;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 15px 17px;

    background: #fff;

    border: 1px solid var(--border-light);
    border-radius: 14px;

    color: var(--text);

    box-shadow:
        0 6px 22px rgba(55, 31, 42, .035);

    transition:
        transform .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}

.quick-link:hover {
    transform: translateY(-2px);

    border-color: var(--pink-light);

    box-shadow:
        0 12px 30px rgba(55, 31, 42, .07);
}

.quick-link .icon {
    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: var(--pink-soft);

    font-size: 16px;
}

.quick-link .text {
    font-weight: 700;
}

.quick-link small {
    display: block;

    color: var(--text-muted);

    font-size: 11px;
    font-weight: 400;
}


/* =========================================================
   Section header
   ========================================================= */

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-bottom: 17px;
}

.section-header h2 {
    margin: 0;

    font-size: 18px;
}

.section-header .actions {
    display: flex;
    align-items: center;
    gap: 8px;
}


/* =========================================================
   Tables
   ========================================================= */

.table-wrap {
    width: 100%;

    overflow-x: auto;

    border: 1px solid var(--border-light);
    border-radius: 14px;

    background: #fff;

    -webkit-overflow-scrolling: touch;
}

table {
    width: 100%;

    border-collapse: separate;
    border-spacing: 0;

    min-width: 680px;
}

th,
td {
    padding: 14px 16px;

    text-align: left;

    border-bottom: 1px solid var(--border-light);

    vertical-align: middle;
}

th {
    background: #fffafb;

    color: var(--text-light);

    font-size: 12px;
    font-weight: 700;

    white-space: nowrap;
}

td {
    color: var(--text);

    font-size: 13px;
}

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

tbody tr:hover {
    background: #fffafd;
}

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

table a {
    color: var(--pink-dark);
    font-weight: 650;
}

table a:hover {
    text-decoration: underline;
}


/* =========================================================
   Domain
   ========================================================= */

.domain-name {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: var(--text);

    font-family:
        ui-monospace,
        SFMono-Regular,
        Menlo,
        Monaco,
        Consolas,
        monospace;

    font-size: 13px;
    font-weight: 650;

    word-break: break-all;
}

.domain-name::before {
    content: "◌";

    color: var(--pink);

    font-family: inherit;
    font-size: 15px;
}

.domain-sub {
    margin-top: 2px;

    color: var(--text-muted);

    font-size: 11px;
}


/* =========================================================
   Status
   ========================================================= */

.status {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 4px 10px;

    border-radius: 999px;

    font-size: 11px;
    line-height: 1.5;
    font-weight: 700;

    white-space: nowrap;
}

.status::before {
    content: "";

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: currentColor;
}

.status-active,
.status-1,
.status-approved,
.status-success {
    color: #49a878;
    background: var(--green-soft);
}

.status-pending {
    color: #d69b35;
    background: var(--yellow-soft);
}

.status-rejected,
.status-danger {
    color: #d96672;
    background: var(--red-soft);
}

.status-suspended,
.status-0 {
    color: #6d91bf;
    background: var(--blue-soft);
}

.status-deleted {
    color: #999097;
    background: #f5f2f4;
}


/* =========================================================
   Buttons
   ========================================================= */

button,
.button,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    min-height: 38px;

    padding: 8px 15px;

    border: 0;
    border-radius: 11px;

    background: #f5f1f3;

    color: var(--text);

    font-size: 13px;
    font-weight: 700;

    white-space: nowrap;

    transition:
        transform .18s ease,
        background .18s ease,
        box-shadow .18s ease,
        color .18s ease;
}

button:hover,
.button:hover,
.btn:hover {
    transform: translateY(-1px);
}

button:active,
.button:active,
.btn:active {
    transform: translateY(0);
}

button.primary,
.button.primary,
.btn.primary {
    color: #fff;

    background:
        linear-gradient(
            135deg,
            #ff9db9,
            #f47f9f
        );

    box-shadow:
        0 7px 18px rgba(244, 127, 159, .2);
}

button.primary:hover,
.button.primary:hover,
.btn.primary:hover {
    box-shadow:
        0 10px 24px rgba(244, 127, 159, .28);
}

button.success,
.button.success,
.btn.success {
    color: #fff;
    background: var(--green);
}

button.danger,
.button.danger,
.btn.danger {
    color: #fff;
    background: var(--red);
}

button.secondary,
.button.secondary,
.btn.secondary {
    color: var(--text-light);
    background: #f6f2f4;
}

button.small,
.button.small,
.btn.small {
    min-height: 31px;

    padding: 5px 10px;

    border-radius: 9px;

    font-size: 11px;
}


/* =========================================================
   Inline forms
   ========================================================= */

.inline {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    margin: 0;
}

.inline button {
    min-height: 32px;
    padding: 5px 11px;

    font-size: 11px;
}


/* =========================================================
   Forms
   ========================================================= */

.form-group {
    margin-bottom: 18px;
}

.form-group:last-child {
    margin-bottom: 0;
}

label {
    display: block;

    margin-bottom: 7px;

    color: var(--text);

    font-size: 13px;
    font-weight: 700;
}

label small {
    margin-left: 5px;

    color: var(--text-muted);

    font-size: 11px;
    font-weight: 400;
}

input,
select,
textarea {
    width: 100%;

    padding: 11px 13px;

    background: #fff;

    border: 1px solid var(--border);
    border-radius: 11px;

    outline: none;

    color: var(--text);

    font-size: 13px;

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

input:hover,
select:hover,
textarea:hover {
    border-color: #ead9df;
}

input:focus,
select:focus,
textarea:focus {
    background: #fff;

    border-color: #ffb1c7;

    box-shadow:
        0 0 0 4px rgba(255, 143, 175, .10);
}

textarea {
    min-height: 120px;

    resize: vertical;

    line-height: 1.7;
}

input::placeholder,
textarea::placeholder {
    color: #b9afb5;
}

input[type="checkbox"],
input[type="radio"] {
    width: auto;
}

.form-help {
    margin-top: 5px;

    color: var(--text-muted);

    font-size: 11px;
}

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

    margin-top: 22px;
}


/* =========================================================
   Search
   ========================================================= */

.search {
    position: relative;

    margin-bottom: 18px;
}

.search input {
    padding-left: 40px;
}

.search::before {
    content: "⌕";

    position: absolute;
    left: 14px;
    top: 50%;

    transform: translateY(-50%);

    color: var(--text-muted);

    font-size: 18px;

    pointer-events: none;
}


/* =========================================================
   Alerts
   ========================================================= */

.alert {
    margin-bottom: 18px;
    padding: 12px 15px;

    border: 1px solid transparent;
    border-radius: 12px;

    font-size: 13px;
    line-height: 1.6;
}

.alert.success {
    color: #418d67;
    background: var(--green-soft);
    border-color: #d9f0e3;
}

.alert.danger {
    color: #c85e69;
    background: var(--red-soft);
    border-color: #f5dadd;
}

.alert.warning {
    color: #b8832e;
    background: var(--yellow-soft);
    border-color: #f5e8c8;
}

.alert.info {
    color: #5c83ae;
    background: var(--blue-soft);
    border-color: #dceafb;
}


/* =========================================================
   Empty
   ========================================================= */

.empty {
    padding: 50px 20px;

    text-align: center;

    color: var(--text-muted);

    background: #fff;

    border: 1px dashed #eee2e6;
    border-radius: 14px;
}

.empty::before {
    content: "🌸";

    display: block;

    margin-bottom: 9px;

    font-size: 25px;

    opacity: .7;
}


/* =========================================================
   Provider
   ========================================================= */

.provider-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 16px;
}

.provider-card {
    position: relative;

    padding: 20px;

    background: #fff;

    border: 1px solid var(--border-light);
    border-radius: 15px;

    box-shadow:
        0 6px 22px rgba(55, 31, 42, .035);
}

.provider-card h3 {
    margin-bottom: 4px;
}

.provider-card .provider-type {
    color: var(--text-muted);

    font-size: 11px;
}

.provider-card .provider-status {
    position: absolute;

    top: 18px;
    right: 18px;
}


/* =========================================================
   Provider fields
   ========================================================= */

.provider-fields {
    margin-top: 18px;
    padding: 18px;

    background: #fff9fb;

    border: 1px solid var(--border-light);
    border-radius: 13px;
}

.provider-fields + .provider-fields {
    margin-top: 12px;
}


/* =========================================================
   Auth / Login
   ========================================================= */

.auth-page {
    min-height:
        calc(100vh - 180px);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px 0 60px;
}

.auth-card {
    width: min(100%, 430px);

    padding: 34px;

    background:
        rgba(255, 255, 255, .95);

    border: 1px solid var(--border-light);
    border-radius: 22px;

    box-shadow:
        0 20px 60px rgba(55, 31, 42, .08);

    position: relative;
}

.auth-card::before {
    content: "🌸";

    display: flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    margin: 0 auto 17px;

    background: var(--pink-soft);

    border-radius: 18px;

    font-size: 25px;
}

.auth-card h1 {
    margin-bottom: 4px;

    text-align: center;

    font-size: 23px;
    font-weight: 800;

    letter-spacing: -.5px;
}

.auth-card .subtitle {
    margin-bottom: 27px;

    color: var(--text-muted);

    text-align: center;

    font-size: 12px;
}

.auth-card form {
    margin-top: 5px;
}

.auth-card button[type="submit"] {
    width: 100%;

    margin-top: 6px;
}


/* =========================================================
   Pre / JSON
   ========================================================= */

pre {
    max-width: 100%;

    padding: 17px;

    overflow-x: auto;

    background: #28252a;

    border-radius: 13px;

    color: #f8edf1;

    font-family:
        ui-monospace,
        SFMono-Regular,
        Menlo,
        Monaco,
        Consolas,
        monospace;

    font-size: 12px;
    line-height: 1.7;
}


/* =========================================================
   Text utilities
   ========================================================= */

.muted {
    color: var(--text-muted) !important;
}

.text-light {
    color: var(--text-light) !important;
}

.text-pink {
    color: var(--pink-dark) !important;
}

.text-green {
    color: #4aa97b !important;
}

.text-red {
    color: #d76672 !important;
}

.text-center {
    text-align: center !important;
}

.text-right {
    text-align: right !important;
}


/* =========================================================
   Pagination
   ========================================================= */

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 6px;

    margin-top: 22px;
}

.pagination a,
.pagination span {
    min-width: 34px;
    height: 34px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 10px;

    border-radius: 10px;

    color: var(--text-light);

    background: #fff;

    border: 1px solid var(--border-light);

    font-size: 12px;
    font-weight: 650;
}

.pagination a:hover {
    color: var(--pink-dark);

    background: var(--pink-soft);

    border-color: var(--pink-light);
}

.pagination .active {
    color: #fff;

    background: var(--pink);

    border-color: var(--pink);
}


/* =========================================================
   Footer
   ========================================================= */

.site-footer {
    padding: 25px 0 35px;

    color: var(--text-muted);

    text-align: center;

    font-size: 11px;
}

.site-footer a {
    color: var(--pink-dark);
}

.site-footer a:hover {
    text-decoration: underline;
}


/* =========================================================
   Admin footer fallback
   ========================================================= */

.admin-footer {
    padding: 25px 0 35px;

    color: var(--text-muted);

    text-align: center;

    font-size: 11px;
}

.admin-footer a {
    color: var(--pink-dark);
}


/* =========================================================
   Login / admin specific
   ========================================================= */

.admin-main .card > h1:first-child {
    display: flex;
    align-items: center;
    gap: 9px;
}

.admin-main .card > h1:first-child::before {
    content: "✦";

    color: var(--pink);

    font-size: 17px;
}


/* =========================================================
   Links
   ========================================================= */

.link {
    color: var(--pink-dark);
    font-weight: 650;
}

.link:hover {
    text-decoration: underline;
}


/* =========================================================
   Divider
   ========================================================= */

.divider {
    height: 1px;

    margin: 22px 0;

    background: var(--border-light);
}


/* =========================================================
   Two column
   ========================================================= */

.two-column {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 20px;
}


/* =========================================================
   Domain application details
   ========================================================= */

.info-list {
    display: grid;

    gap: 1px;

    overflow: hidden;

    background: var(--border-light);

    border: 1px solid var(--border-light);
    border-radius: 13px;
}

.info-row {
    display: grid;

    grid-template-columns: 130px 1fr;

    gap: 15px;

    padding: 12px 14px;

    background: #fff;
}

.info-row .label {
    color: var(--text-muted);

    font-size: 12px;
}

.info-row .value {
    color: var(--text);

    font-size: 13px;
    word-break: break-word;
}


/* =========================================================
   Notice
   ========================================================= */

.notice {
    display: flex;
    align-items: flex-start;
    gap: 11px;

    padding: 14px 16px;

    background: var(--pink-soft);

    border: 1px solid var(--pink-light);
    border-radius: 13px;

    color: #a75c73;

    font-size: 12px;
}

.notice::before {
    content: "♡";

    flex: 0 0 auto;

    color: var(--pink-dark);

    font-size: 17px;
}


/* =========================================================
   Scrollbar
   ========================================================= */

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #eadde2;

    border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
    background: #dfcbd3;
}


/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1000px) {

    .stats-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .quick-links {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

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

    .two-column {
        grid-template-columns: 1fr;
    }

    .header-inner {
        min-height: 70px;
    }

    .site-header nav {
        gap: 2px;
    }

    .site-header nav a {
        padding: 7px 9px;
    }
}


@media (max-width: 760px) {

    .container {
        width: min(
            calc(100% - 28px),
            var(--container)
        );
    }

    .admin-main {
        padding-top: 27px;
        padding-bottom: 50px;
    }

    .header-inner {
        align-items: flex-start;

        padding: 13px 0;

        flex-direction: column;

        gap: 11px;
    }

    .site-header nav {
        width: 100%;

        justify-content: flex-start;

        overflow-x: auto;

        flex-wrap: nowrap;

        padding-bottom: 2px;

        scrollbar-width: none;
    }

    .site-header nav::-webkit-scrollbar {
        display: none;
    }

    .site-header nav a {
        flex: 0 0 auto;
    }

    .site-header nav a:last-child {
        margin-left: 0;
    }

    .page-title,
    .admin-main > h1 {
        font-size: 23px;
    }

    .card {
        padding: 21px;

        border-radius: 16px;
    }

    .stats-grid {
        gap: 11px;
    }

    .stat-card {
        padding: 17px;
    }

    .stat-card .value {
        font-size: 24px;
    }

    .quick-links {
        gap: 10px;
    }

    .quick-link {
        padding: 13px;
    }

    .section-header {
        align-items: flex-start;

        flex-direction: column;
    }

    .auth-page {
        min-height:
            calc(100vh - 150px);

        padding-top: 20px;
    }

    .auth-card {
        padding: 27px 22px;

        border-radius: 19px;
    }
}


@media (max-width: 480px) {

    body {
        font-size: 13px;
    }

    .container {
        width: calc(100% - 22px);
    }

    .logo {
        font-size: 17px;
    }

    .logo::before {
        width: 35px;
        height: 35px;

        border-radius: 11px;
    }

    .admin-main {
        padding-top: 21px;
    }

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

    .quick-links {
        grid-template-columns: 1fr;
    }

    .card {
        padding: 17px;

        margin-bottom: 15px;
    }

    .card h1 {
        font-size: 19px;
    }

    .card h2 {
        font-size: 16px;
    }

    .form-actions {
        flex-direction: column;
        align-items: stretch;
    }

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

    .inline {
        flex-wrap: wrap;
    }

    .auth-card {
        padding: 25px 18px;
    }

    .auth-card h1 {
        font-size: 21px;
    }

    .info-row {
        grid-template-columns: 1fr;

        gap: 2px;
    }

    th,
    td {
        padding: 12px 13px;
    }
}


/* =========================================================
   Reduced motion
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
.oauth-login-button {
    width: 100%;

    min-height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 10px 16px;

    color: var(--text);

    background: #fff;

    border: 1px solid var(--border);

    border-radius: 14px;

    font-size: 13px;
    font-weight: 700;

    box-shadow:
        0 5px 18px rgba(55, 31, 42, .035);

    transition:
        transform .18s ease,
        border-color .18s ease,
        background .18s ease,
        box-shadow .18s ease;
}

.oauth-login-button:hover {
    transform: translateY(-1px);

    background: var(--pink-soft);

    border-color: var(--pink-light);

    color: var(--pink-dark);

    box-shadow:
        0 9px 25px rgba(55, 31, 42, .07);
}

.oauth-login-icon {
    width: 27px;
    height: 27px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--pink-soft);

    border-radius: 9px;

    font-size: 14px;
}
/* 只读 / 禁用输入框 */
input:disabled,
input[readonly],
select:disabled,
textarea:disabled {
    background: #f3f3f3 !important;
    color: #999 !important;
    border-color: #e2e2e2 !important;
    cursor: not-allowed;
    opacity: 1;
}

/* 禁用输入框里的文字 */
input:disabled::placeholder,
input[readonly]::placeholder {
    color: #aaa;
}

/* 深色浏览器自动填充/系统样式也保持禁用感 */
input:disabled,
select:disabled,
textarea:disabled {
    -webkit-text-fill-color: #999;
}
input:disabled,
select:disabled,
textarea:disabled {
    background-color: #f3f3f3 !important;
    color: #999 !important;
    border-color: #e5e5e5 !important;
    cursor: not-allowed !important;
    opacity: 1 !important;
    -webkit-text-fill-color: #999;
}

input:disabled::placeholder,
select:disabled::placeholder,
textarea:disabled::placeholder {
    color: #aaa;
}
.provider-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin: 0 auto 13px;
    border-radius: 15px;
    background: #fff7fa;
    border: 1px solid #f4e4ea;
}

.provider-icon img {
    display: block;
    width: 32px;
    height: 32px;
    object-fit: contain;
}