:root {
    --accent: #8c6ac0;
}

* {
    font-family: "DM Sans", serif;
    font-optical-sizing: auto;
}

html, body {
    width: 100vw;
    height: 100vh;
    margin: 0;

    background: url(/assets/background.png);
    background-size: cover;

    display: block;
    color: black;
}

main {
    width: 100%;
    height: 100%;

    background: rgba(223, 223, 223, 0.85);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.box {
    width: 400px;
    padding: 16px 24px;

    background: #fff;
    border: 2px solid #f6f6f6;
    border-radius: 4px;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
}
form input {
    width: 100%;
}
form button {
    background: black;
    color: white;
}

.logo {
    height: 40px;
    margin-bottom: 20px;
}

button {
    color: black;
}
