@import url(/css/general.css);

body
{
    display: grid;
    place-items: center;
}

form
{
    box-shadow: 0 0 32px #000;
    border-radius: 16px;
    min-width: 300px;
    width: 40vw;
    max-width: 400px;
    justify-content: space-evenly;
    background-color: var(--bg-secondary);
    padding: 20px 32px;
}

form.nope
{
    position: absolute;
}

/* form.nope:hover
{
    top: unset;
    left: unset;
    bottom: 0;
    right: 0;
} */

form h1
{
    margin-bottom: 24px;
}

form p.error
{
    display: none;
    color: tomato;
}

form p.error.shown
{
    display: block;
}

form button
{
    margin-top: 10px;
}