:root {
    color: #20242a;
    background: transparent;
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
    font-synthesis: none;
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
    background: transparent;
}

body {
    margin: 0;
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 1.5rem;
}

main {
    width: min(26rem, 100%);
    padding: 2rem;
    border: 1px solid #d8dce2;
    border-radius: 0.75rem;
    background: #ffffff;
}

span {
    color: #646b76;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

h1 {
    margin: 0.75rem 0;
    font-size: 2rem;
    line-height: 1.1;
}

p {
    margin: 0;
    color: #5f6670;
    line-height: 1.5;
}

button {
    margin-top: 1.5rem;
    min-height: 2.75rem;
    padding: 0.65rem 1rem;
    border: 0;
    border-radius: 0.5rem;
    color: #ffffff;
    background: #2563eb;
    cursor: pointer;
    font: inherit;
    font-weight: 650;
}

button:hover {
    background: #1d4ed8;
}

button:focus-visible {
    outline: 3px solid rgb(37 99 235 / 25%);
    outline-offset: 2px;
}
