:root {
    color-scheme: dark;
    font-family: "Segoe UI", "Microsoft YaHei", sans-serif;
    background: #101018;
    color: #f7f6ff;
}

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
    margin: 0;
}

body {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
    background:
        radial-gradient(circle at 50% 0%, rgba(137, 108, 255, 0.22), transparent 45%),
        #101018;
}

.verification-card {
    width: min(100%, 360px);
    padding: 32px 28px 28px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 24px;
    background: rgba(28, 27, 42, 0.96);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
}

.brand-mark {
    width: 54px;
    height: 54px;
    margin: 0 auto 16px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    background: linear-gradient(145deg, #a48bff, #6a4de0);
    box-shadow: 0 12px 30px rgba(112, 76, 226, 0.36);
    color: #fff;
    font-size: 25px;
    font-weight: 700;
}

.eyebrow {
    margin: 0 0 8px;
    color: #aa9cf1;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
}

h1 {
    margin: 0;
    font-size: 24px;
    line-height: 1.35;
}

.description {
    margin: 10px 0 24px;
    color: #bdb9cd;
    font-size: 14px;
    line-height: 1.65;
}

.widget {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.message {
    min-height: 22px;
    margin: 18px 0 0;
    color: #aaa5bb;
    font-size: 13px;
    line-height: 1.6;
}

.message.error {
    color: #ffaaa9;
}

.message.success {
    color: #8be0bd;
}

.actions {
    margin-top: 22px;
    display: grid;
    gap: 10px;
}

button {
    width: 100%;
    min-height: 42px;
    border-radius: 12px;
    font: inherit;
    cursor: pointer;
}

.primary-button {
    border: 0;
    background: #8065e8;
    color: #fff;
    font-weight: 650;
}

.secondary-button {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: #d4d1df;
}

button:hover {
    filter: brightness(1.08);
}

button:focus-visible {
    outline: 2px solid #b5a4ff;
    outline-offset: 2px;
}

button:disabled {
    cursor: default;
    opacity: 0.55;
}

[hidden] {
    display: none !important;
}
