@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');
/*#form {
    width: 350px;
    min-height: 250px;
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    margin: 0 auto;
    background: #00000096;
    padding: 15px;
}

#form {
    width: 350px;
    min-height: 250px;
    display: grid;
    grid-template-rows: auto 20%;
    background: #00000096;
    padding: 15px;
    align-content: space-evenly;
    align-items: center;
    justify-items: center;
} */

#form {
    width: 350px;
    min-height: 250px;
    display: flex;
    background: #00000096;
    padding: 15px;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: space-around;
    justify-content: center;
    align-items: center;
}
body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
}
.red {
    font-size: 16px;
    color: red;
}
.green{
    content:"Click to Verify";
    font-size: 16px;
    color: green;
}

header {
    width: 100%;
    height: 15vh;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}

header div {
    font-size: 24px;
    width: 250px;
    height: auto;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}

section {
    background: url(nutri.webp) center fixed;
    height: 85vh;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

label {
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
}

button#btn {
    width: 80%;
    height: 40px;
    border: none;
    border-radius: 10px;
    background: #ba0000;
    color: #fff;
    font-size: 18px;
}

button#btn:hover {
    background: linear-gradient( 0deg, #ff1010, #800404);
}

input#code {
    width: 80%;
    height: 35px;
    background: #b9b9b994;
    border: 1px solid #fff;
    border-radius: 10px;
}