body{
    background-color: rgba(255, 255, 255, 1);
}


*{
    font-family: Arial, Helvetica, sans-serif;
}

button, div{
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.fakeHide{
    width: 0; height: 0; border-style: none; background: transparent;
    cursor: pointer;
    padding: 1px;
}
.fakeHide:focus{
    border-style: none;
}


button, input[type="submit"]{
    cursor: pointer;
    border-style: none;
    border-radius: 5px;
    -webkit-border-radius: 5px; 
    background-color: #F7941D;
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 10px;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
    min-width: fit-content;
    -webkit-appearance: none;
    appearance: none;
}

button > *, input[type="submit"] > *{
    cursor: pointer;
}

input[type="text"],input[type="number"],input[type="password"],input[type="email"],input[type="time"],select,textarea{
    padding: 5px;
    font-size: 18px;
    border-radius: 5px;
    border-style: solid;
    border-color: black;
    border-width: 1px;
    min-width: 0;
}

h1,h2,h3{
    color: rgb(85, 184, 173);
}

h3{
    font-size: 20px;
}

label{
    font-size: 20px;
    user-select: none;
    -webkit-user-select: none;
}

.block{
    background-color: rgb(255, 255, 255);
    color: black;
    margin: 15px;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 5px 6px 7px rgba(0, 0, 0, 0.5);
    border-style: solid;
    border-color: black;
    border-width: 1px;
}

.melding{
    grid-column: 1 / span 2;
    justify-self: center;
    padding: 20px;
    border-radius: 10px;
    border-style: solid;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 30px;
    margin-left: 15px;
    margin-top: 15px;
    margin-right: 15px;
}

.fout{
    border-color: red;
    color: red;
}

.not-fout{
    border-color: green;
    color: green;
}

.noEffectSpan{
    display: grid;
    grid-template-columns: subgrid;
    grid-template-rows: subgrid;
    grid-column: 1 / -1;
    grid-row: span 11;
}

.template{
    display: none;
}