a {
    color: white;
}

a.orange {
    color: var(--gps-orange);
}

#website {
    display: none !important;
}

.contact-container {
    display: flex;
    justify-content: center;
}

.contact-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    height: fit-content;
}

.contact-form-box {
    background: white;
    padding: 30px;
    width: 420px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    min-height: 640px;
    border: 4px solid var(--gps-orange);
}

.contact-form-box h2 {
    margin: 0 0 10px 0;
    font-size: 32px !important;
}

.contact-form-box p {
    margin: 0 0 33px 0;
    color: var(--gps-font-color);
}

.contact-input {
    border: 1px solid #D8D8D8;
    color: #444444;
    background: #D8D8D8 0% 0% no-repeat padding-box;
    border-radius: 3px;
    font-size: 14px;
    line-height: 40px;
    padding: 0px 15px;
    width: 93%;
    margin-bottom: 20px;
    outline: none;
    box-sizing: content-box;
    min-height: 40px;
}

.contact-input:focus {
    border: 1px solid var(--gps-orange);
}

.contact-button:hover {
    background: var(--gps-orange);
}

.contact-sidebar {
    background: var(--gps-orange);
    color: #fff;
    padding: 30px;
    width: 400px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    min-height: 640px;
    border: 4px solid var(--gps-orange);
}

.contact-sidebar h3 {
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 32px !important;
}

.contact-sidebar p {
    margin: 5px 0;
    line-height: 30px;
}

.contact-button {
    width: 100%;
    margin-top: 30px;
}

.status {
    display: none;
}

.active {
    display: block;
}

#contact-status {
    display: block;
    margin-top: 20px;
    text-align: center;
}

span.status {
    margin: 0 0 5px 5px;
}

@media (max-width: 1000px) {
    .contact-wrapper {
        flex-direction: column;
        width: 100%;
    }

    .contact-form-box,
    .contact-sidebar {
        min-height: unset;
        width: 80%;
        margin: auto;
    }

    .contact-form-box {
        border-bottom-left-radius: unset;
        border-top-right-radius: 10px;
    }

    .contact-sidebar {
        border-top-right-radius: unset;
        border-bottom-left-radius: 10px;
    }

    .contact-input {
        width: 90%;
    }
}