#contact {
    margin: 75px auto 0;
    width: 900px;
}

#contact h2 {
    text-align: center;
}

#contact legend {
    display: none;
}

#contact>section {
    display: flex;
    justify-content: space-between;
}
#contact > section > article {
    margin-top: 40px;
    width: 345px;
}

#contact fieldset {
    border: 0;
    margin-top: 31px;
}

#contact .no {
    margin-top: 0;
    margin-bottom: 0;
}

#contact .no p {
    margin-bottom: 12px;
}

#contact form {
    background: #efefef;
    border-radius: 5px;
    border-width: 1px;
    border-color: #000;
    border-style: solid;
    padding: 28px;
    margin-top: 40px;
    min-width: 500px;
}

#contact input:not(input[type="radio"]):not(input[type="submit"]),
textarea {
    width: 200px;
    height: 32px;
    background: #fff;
    border: 1px solid #000;
    border-radius: 5px;
    padding: 0px 10px;
}

#contact textarea {
    width: 100%;
    height: 90px;
    padding: 10px;
    margin-bottom: 20px;
}

#contact form section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#contact .down {
    display: flex;
    flex-direction: column;
    gap: 7px 0;
}

input[type="submit"] {
    border-radius: 100px;
    background: #006400;
    border-width: 0;
    padding: 11px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    transition: all 100ms ease-in;
    width: 100%;
}

input[type="submit"]:hover {
    background: #003c00;
}
@media (max-width: 768px) {
    #contact {
        width: 304px;
    }
    #contact form {
        width: 304px;
        min-width: unset;
    }
    #contact form section {
        flex-direction: column;
    }
    #contact>section {
        flex-direction: column;
    }
}