#contact_container {
    background-color: var(--bg-color-orange);
    width: 100%;
    height: 100vh;
    overflow: auto;
}
#contact_form {
    width: 90%;
    margin: 0 auto;
}
#contact_form > h1 {
    font-family: dabre;
    font-size: 60px;
    font-weight: normal;
    text-transform: uppercase;
    color: var(--font-color-white);
}
#contact_form > p {
    color: var(--font-color-white);
}
#contact_form > form {
    margin-top: 2%;
    margin-bottom: 2%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content:space-between;
    align-items:flex-start;
}
#contact_form > form > label {
    font-weight: bold;
    text-align: left;
    margin-bottom: 5px;
    color: var(--font-color-white);
}
#contact_form > form > input[type="text"] {
    background: var(--bg-color-white);
    max-width: 100%;
    width: calc(100% - 20px);
    min-width: 0;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 5px;
    outline: none;
}
#contact_form > form > textarea {
    background: var(--bg-color-white);
    max-width: 100%;
    width: calc(100% - 20px);
    min-width: 0;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 5px;
    outline: none;
    resize: none;
}
button {
    background: var(--bg-color-black);
    color: var(--bg-color-white);
    margin-top: 1%;
    padding: 10px 20px 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
}
.input_error {
    border: solid 1px red;
}
@media screen and (max-width: 768px) {
    #contact_form > h1 {
        font-size: 40px;
    }
    #contact_form > form > input[type="text"] {
        width: calc(100% - 14px);
        padding: 7px;
    }
    #contact_form > form > textarea {
        height: 120px;
    }
}