.form-columns-1 {
    display: flex;
    padding: 0 20px;
    box-sizing: border-box;
}

.form-columns-2 {
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    box-sizing: border-box;
}

.form-field {
    flex: 1;
    margin-right: 10px;
}

.form-field:last-child {
    margin-right: 0;
}


.required {
    color: red;
}

.input-field{
    background-color: #f5f8fa;
}

.input-field:focus {
    background-color: #f5f8fa;
    border: 1px solid rgba(82,168,236,.8);
}

.input-field:invalid:not(:placeholder-shown) {
    border: 1px solid #c87872;
}

.form-checkbox{
    list-style-type: none;
}

#requestDescription{
    width: 100%;
}

.section-title{
    font-size: 2em;
    padding-bottom: 30px;
}

.form-button-right{
    display: flex;
    justify-content: flex-end;
  }

.form-start{
    display: flex; 
    flex-direction: column; 
    align-items: center;
    width: 70%;
}

@media screen and (max-width: 1450px) {  
    .form-start{
        width: 100%;
    }
}

.form-section{
    padding-top: 0;
    color: black;
    text-align: center;
}

.form-section-top{
    color: black;
    text-align: center;
}

.left-top-pos{
    margin-top: 0;
    margin-bottom: auto;
}