html, body{
    margin: 0;
    height: 100%;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 10pt;
    background: #f2f4f6;
}
:focus{
    outline: none;
}
header{
    height: 50px;
    line-height: 50px;
    font-weight: bold;
    background: linear-gradient(90deg,orange,yellow);
}
footer{
    height: 30px;
    line-height: 30px;
    font-style: italic;
    font-size: 8pt;
    background: linear-gradient(90deg,orange,yellow);
}
section{
    height: calc(100% - 80px);
    overflow: auto;
    background: brown;
}
section .grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 10px;
}
section .grid div{
    display: flex;
    flex-direction: column;
}
section .grid div input, section .grid div select{
    height: 30px;
    border-radius: 10px;
    border: 1px solid yellow;
}
section .grid label{
    font-weight: bold;
    color: goldenrod;
}
section .terms,  h1{
    display: flex;
    padding: 10px;
}
section button{
    margin-left: 10px;
    background: linear-gradient(90deg, orange,yellow);
    cursor: pointer;
    border: none;
    border-radius: 5px;
    padding: 5px;
}
section button:hover{
    background: yellow;
}
section .terms label{
    color: yellow;
}