header{
    text-align: center;
}

.formArea{
    padding: 2%;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    justify-self: center;
    width: 50%;
    border: 8px inset lightblue;
    border-radius: 2%;
    gap: 2%;
}
.details{
    width: 48%;
}

.text{
    align-self: flex-start;
    width: 48%;
}
.details input, .text textarea, .details select{
    margin-top: 10px;
}

.submit{
    display: flex;
    justify-content: center;
    width: 100%;
}

label{
    text-decoration: underline 1px;
    font-size: 20px;
    font-weight: bold;
    text-underline-offset: 5px;
}
button{
    background-color: lightblue;
    width: 10%;
    height: 40px;
    font-size: 15px;
    font-weight: bold;
    border: 4px solid blue;
    border-radius: 15px;
}


