.form-main {
    margin: 0;
    padding: 0;
    position: relative;
    text-align: center;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
    /* min-width: 375px; */
    /* min-height: calc(100vh + 162.5px); */
    /* background-image: linear-gradient(to bottom, #19216C, #98AEEB); */
    color: #2a5675;

}

#form-cont {
    max-width: 600px;
    margin: auto;
    margin-bottom: 50px;
    background-color: white;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.3);
}

#form-title, header {
    color: white !important;
    font-family: inherit !important;
}

#form-title {
    font-size: 2em !important;
}

fieldset {
    border: 1px solid silver;
    border-radius: 3px;
    margin-bottom: 10px;
    padding-block-start: 0.35em;
    padding-inline-start: 0.75em;
    padding-inline-end: 0.75em;
    padding-block-end: 0.625em
}

legend {
    text-align: start;
    max-width: 700px;
    color: rgba(220, 56, 72, 0.99);
    padding-bottom: 4px;
    width: initial;
    font-weight: 400;
}

.form-row {
    display: flex;
}

.column {
    flex: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.labels {
    text-align: right;
    padding-right: 15px;
}

label,
.input-field {
    margin-bottom: 2.5px;
    font-weight: 400;
}

.input-field {
    width: 250px;
    border-radius: 2px;
    border-style: solid;
    border-width: 1px;
    border-color: silver;
    height: 22px;
    padding: 0 7.5px;
}

#comment {
    min-height: 48px;
}

.radio-btn,
.checkbox {
    height: 21px;
    margin: 0;
    width: 18px;
    /* need this for firefox & edge else they get centered effectively*/
}

.radio-btn {
    margin-top: 1px;
    line-height: 21px;
}

#dropdown {
    height: 26px;
}

div {
    outline: 0px solid silver;
}

.form-button {
    display: inline-block;
    border: none;
    border-radius: 2px;
    padding: 0.7rem 2rem;
    margin: 0;
    text-decoration: none;
    background: rgba(220, 56, 72, 0.788);
    color: #ffffff;
    font-family: sans-serif;
    cursor: pointer;
    text-align: center;
    transition: background 250ms ease-in-out, transform 150ms ease;
    -webkit-appearance: none;
    margin-top: 15px;
}

.form-button:hover,
.form-button:focus {
    background: #19216C;
}

.form-button:focus {
    outline: 1px solid #fff;
    outline-offset: -4px;
}

.form-button:active {
    transform: scale(0.99);
}

@media (max-width: 414px) {
    #form-cont {
        padding: 5px;
        max-width: 355px
    }

    .input-field {
        width: 240px;
    }
}