*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

h1{
    font-size: 2rem;
    color: #eee;
    margin-bottom: 2rem;
}

body{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5rem;
    min-height: 100vh;
    background-color: #000;
}

form{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

fieldset{
    border: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

label{
    font-size: 1.25rem;
    color: #fff;
}

input{
    width: 300px;
    height: 40px;
    border-radius: 8px;
    outline: none;
    text-indent: 8px;
    font-size: 1.1rem;
}

button{
    width: 300px;
    height: 40px;
    border: 1px solid transparent;
    background-color: #eee;
    color: #000;
    border-radius: 12px;
    cursor: pointer;
    transition: 300ms all ease-in-out;
}

button:hover{
    border-color: #eee;
    background-color: #000;
    color: #eee;
}

button:disabled{
    border-color: #eee;
    background-color: #000;
    color: #eee;
}

canvas{
    background-color: #000;
}