body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

main {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

main a {
    margin-bottom: 1em;
}

form {
    display: flex;
    flex-direction: column;
}

.error {
    color: #e44343;
}

form > input {
    margin-bottom: 1em;
}

label {
    margin-bottom: 0.5em;
}

input, button {
    padding: 0.6em;
}

input,
input:focus-visible {
    border: none;
    border-bottom: 1px solid black;
}

input:focus {
    outline: none;
    box-shadow: none;
    border-color: #aa64ee;
}

button {
    cursor: pointer;
}
