.header-flex {
    display: flex;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    justify-content: space-between;
    align-items: center;
}

.header-right {
    text-align: right;
    font-size: 18px;
    font-weight: bold;
}

.header-right a {
    text-decoration: none;
}

.centerdiv {
    margin: auto;
}

.centertext {
    text-align: center;
}

.contactform {
    margin-top: 50px;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    max-width: 800px;
}

.contactform input {
    color: black;
    background-color: white;
    border-color: #606060;
    font-size: 18px;
}

.contactform textarea {
    color: black;
    background-color: white;
    border-color: #606060;
    font-size: 18px;    
}

.contactform fieldset {
    margin-bottom: 0;
}

.contactform textarea {
    margin-bottom: 0;
}

.contactform button {
    color: var(--primary);
    background-color: #606060;
    font-weight: bold;
    font-size: 18px;
}

.contactform button:hover {
    background-color: #017FC0;
    color: var(--primary);
}

@media (min-width: 575px) {
    .container-main {
        max-width: 768px;
        padding: 0 20px;
        margin: auto;
        display: block;
    }

    .header-right {
        text-align: right;
        font-size: 24px;
        font-weight: bold;
    }
}

@media (max-width: 576px) {
    .header-right a {
        font-size: 0.9rem;
    }
}

.tagline {
    color: Black    
}

.contactheading.h3 {
    color: black;
    text-align: center;
}

.whitetext {
    color: white;
}

.success-banner {
    background-color: var(--primary);
    color: var(--primary-inverse);
    border-radius: 0.25rem;
    text-align: center;
}

.recaptcha-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}