/** Kontaktformular */
.contact-form {
    padding-top: 50px;
    font-size: 16px;
}

.contact-form-item {
    margin-bottom: 30px;
}

/** Kontaktformular Feld */
.contact-form-field {
    width: 30%;
    display: block;
    margin-top: 10px;
    padding: 10px;
    border: 2px solid #FFFFFF;
    border-radius: 5px;
    background-color: #006eff;
    color: #FFFFFF;
    font-size: 16px;
    outline: none;
}

.contact-form-field-message {
    min-height: 216px;
    resize: vertical;
}

.contact-form-field-error {
    border-color: #000000 !important;
}

input.contact-form-field:focus, textarea.contact-form-field:focus {
    border: 2px solid #000000;
}

/** Kontaktformular Fehler */
.contact-form-error-message {
    color: #FFFFFF;
    margin-top: 10px;
}

.contact-form-required {
    color: #FFFFFF;
}

/** Kontaktformular CheckBox */
.contact-form-checkbox-item {
    display: flex;
    align-items: center;
}

.contact-form-checkbox-item input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #FFFFFF;
    background-color: #006eff;
    width: 20px;
    height: 20px;
    min-width: 20px;
}

.contact-form-checkbox-item input[type="checkbox"]:checked {
    background-color: #FFFFFF;
}

.contact-form-checkbox-item input[type="checkbox"]:checked::before {
    content: "\2713";
    color: #006eff;
    font-weight: bold;
}

.contact-form-checkbox-text {
    margin-left: 8px;
}

/** Kontaktformular Link */
.contact-form-link {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
}

.contact-form-link:hover {
    text-decoration: underline solid #FFFFFF 20%;
}

/** Kontaktformular Button */
.contact-form-button {
    background-color: #000000;
    text-align: center;
    border: none;
    padding: 20px 50px;
    color: #FFFFFF;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.contact-form-button:hover {
    background-color: #FFFFFF;
    color: #000000;
}

/** Kontaktformular Status */
.contact-form-status-container {
    margin-top: 30px;
    padding: 20px;
    width: 50%;
    display: none;
    border-radius: 5px;
}

.contact-form-status-message {
    font-weight: bold;
}

/** Mobile Ansicht */
@media screen and (max-width: 1040px) {
    /** Kontaktformular Feld */
    .contact-form-field {
        width: 70%;
    }
}