.form{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;

    margin-top: 50px;

    width: 80%;

    font: normal 400 24px/normal "Fira Code";
} 

.form > .field {
    display: flex;
    flex-direction: column;
    
    width: 100%;
    
}
.form > .field > label{
    font-family: "Press Start 2P";
    text-shadow: 4px 4px var(--color-black-first);
    font-size: 22px;
    margin-bottom: 5px;
}

.form > .field > .help{
    font-size: 16px;
    color: red;
    height: 16px;
}