.content-container {
    max-width: var(--max-container-width);
    width: var(--normal-container-width);
    margin: 2% auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 7%;
}

.contact-head {
    margin-bottom: 20px;
}

.contact-head h1 {
    font-weight: 700;
    color: var(--color-black-200);
}

.contact-head p {
    color: var(--color-grey-200);
}

.error-text {
    display: block;
    width: fit-content;
    color: rgb(241, 69, 69);
    font-weight: 500;
    margin: 5px 0;
    font-size: 0.85rem;
}

form input, form label, form textarea, form button {
    display: block;
    outline: none;
    background-color: transparent;
}

form label {
    padding-bottom: 0px;
}

.form-field {
    margin: 1.5% 0;
}

.form-field input {
    padding: 10px 1%;
    width: 98%;
    font-size: 0.95rem;
    border: 1px solid lightgrey;
    border-radius: 4px;
}

.form-field textarea {
    padding: 10px 1%;
    resize: none;
    width: 98%;
    font-size: 1rem;
    border: 1px solid lightgrey;
    border-radius: 4px;
    height: 200px;
}

input:-webkit-autofill,
input:-webkit-autofill:focus {
    transition: background-color 600000s 0s, color 600000s 0s;
}

input[data-autocompleted] {
    background-color: transparent !important;
}

input:focus, textarea:focus {
    border-color: var(--color-secondary);
}

.extra-contact-container {
    background-color: var(--color-primary);
    padding: 2%;
    border-radius: 10px;
    width: 22%;
}

.extra-contact-container h3 {
    font-weight: 700;
    color: var(--color-bg);
    font-size: 1.444rem;
    margin-bottom: 20px;
}

.email h4, .phone h4 {
    color: #eee;
}

.email a, .phone a {
    display: block;
    margin: 10px 0;
    color: var(--color-bg);
}

button {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 0;
    border: none;
    border-radius: 4px;
    color: white;
    font-weight: 600;
    font-size: 1.222rem;
    background-color: var(--color-green) !important;
    cursor: pointer;
}

button svg {
    margin-left: 8px;
    margin-top: 2px;
}

.phone a, .email a {
    display: flex;
    align-items: center;
    justify-content: start;
}

.phone a svg, .email a svg {
    margin-right: 10px;
    width: 24px;
    height: 24px;
    stroke: #fff;
}

@media only screen and (max-width: 1200px) {
    .form-container {
        width: 100%;
    }

    .extra-contact-container {
        width: 100%;
        margin: 40px 0;
        padding: 20px;
    }
}