* {
    box-sizing: border-box;
}


form label {
    display: block;
}

form input,
form textarea {
    width: 100%;
    font-size: 16px;
}

form button {
    font-size: 24px;
}

.form-field {
    margin-bottom: 1em;
}

.status {
    color: #fff;
    padding: 0.6rem;
    border-radius: 4px;
}

.status.success {
    background-color: rgb(20, 176, 83);
}

.status.error {
    background-color: rgb(214, 31, 31);
}

textarea {
    resize: vertical;
    height: 150px;
}

.contact-head {
    background-image: url('/img/webp/contact-header.webp');
    background-repeat: no-repeat;
    background-position: top left;
    background-size: 100% auto;
}

.contact-head .fw-bold {
    color: #fff;
}


.form-special {
    display: none;
}