*{
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;    
}

main {
    height: 100vh;
    display: flex;
    align-items: center; /* aligns the form vertically */
    justify-content: center; /* aligns the form horizontally */
}

body {
    background-image: url('../images/bence-balla-schottner-paUfdNMnR7Y.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

form {
    width: 350px;
    background-color: rgba(128, 128, 128, 0.25);
    backdrop-filter: blur(5px); /poi78;
    padding: 10px;
    border: 1px solid rgb(127, 76, 0);
    border-radius: 12px;
}

fieldset {
    padding: 10px 20px 20px 20px;   
    border: 1px solid rgb(127, 76, 0);
}

label {
    font-size: 16px;
}

label,
input 