* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    background: #0a0a0a;
    color: #f1f1f1;
    font-family:
        ui-monospace,
        sfmono-regular,
        menlo,
        monaco,
        consolas,
        monospace;

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

    padding: 40px 20px;
}

.wrap {
    width: min(720px, 100%);

    display: flex;
    flex-direction: column;

    gap: 40px;
}

h1 {
    margin: 0;

    font-size: 18px;
    font-weight: 500;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

p {
    margin: 10px 0 0;

    color: #777;

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

.group {
    display: flex;
    flex-direction: column;

    gap: 14px;
}

.label {
    color: #666;

    font-size: 10px;
    letter-spacing: 0.12em;

    text-transform: uppercase;
}

.row {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;
}

button,
a {
    appearance: none;

    border: 1px solid #2a2a2a;
    background: #111;

    color: #f1f1f1;

    text-decoration: none;

    font: inherit;
    font-size: 11px;

    letter-spacing: 0.1em;
    text-transform: uppercase;

    padding: 16px 24px;

    border-radius: 12px;

    transition:
        border-color 0.3s ease,
        background 0.3s ease;
}

button:hover,
a:hover {
    border-color: #9b6cff;
    background: rgba(155, 108, 255, 0.08);
}
