h1,
h3 {
    text-align: left;
}

h3 {
    font-size: 1.3em;
    background-color: unset;
}

.responsiveRow {
    align-items: unset;
}

.formRow {
    display: flex;
}

@media screen and (max-width: 1000px) {
    .responsiveRow {
        flex-direction: column;
    }

    .responsiveRow>div {
        padding: 0px;
    }
}

.fullCell,
.halfCell {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin: 15px;
}

.fullCell {
    flex-basis: calc(100% - 30px);
}

.halfCell {
    flex-basis: calc(50% - 30px);
}

.formCell {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 10px;
}

.formCell input,
.formCell select {
    width: 100%;
}

.socialLink {
    display: flex;
    align-items: center;
    margin-bottom: .4em;
}

.socialLink img {
    max-width: 1.5em;
    max-height: 1.5em;
}

.socialLink a {
    margin-left: 1em;
    color: black;
    font-weight: 300;
    font-size: 14px;
}

.socialLink a:hover {
    color: var(--gdtfOrange);
}

#errorFeedback {
    color: red;
}

.inputError {
    border-color: red !important;
}

#captchaWrapper {
    display: flex;
}

#captchaImg {
    min-width: 250px;
    box-shadow: 0px 0px 9px 2px gray;
    border-radius: 5px;
    margin-bottom: 10px;
}

#refreshCaptcha {
    height: 48px;
    width: 100px;
    min-width: unset;
    margin-left: 1em;
    font-size: 1.5em;
    line-height: 2em;
}