main h1 {
    margin-left: 40px;
    margin-right: 40px;
    margin-bottom: 10px;
    padding-top: 40px;
}

.container_form, .map  {
    margin-left: 70px;
    margin-right: 70px;
    margin-top: 40px;
    background-color: #F8F5F3;
    border: 1px solid #4B2307;
}

form{
    width: auto;
    margin: 20px;
    display: flex;
    flex-direction: column;
}

input, textarea {
    padding: 8px;
    margin: 5px 0 20px 0;
    background-color: transparent;
    border: 1px solid #C9AF9E;
    color: currentColor;
}

input:focus, textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px #C9AF9E inset;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
    width: 30%;
}

textarea {
    width: 80%;
    height: 110px;
}

label {
    margin-bottom: 5px;
}

button {
    font-family: inherit;
    background: transparent;
    padding: 14px 20px;
    margin: 8px 0;
    cursor: pointer;
    border: 1px solid #4B2307;
    transition: all 0.3s;
}

button:hover {
    background-color: #4B2307;
    color: white;
}

.map {
    margin-top: 20px;
}

iframe {
    width: 100%;
    height: 200px;
}

@media screen and (max-width: 983px) {
    .container_form, .map {
        margin-left: 35px;
        margin-right: 35px;
    }
}

@media screen and (max-width: 800px) {
    input[type="text"],
    input[type="email"],
    input[type="tel"] {
        width: unset;
    }

    textarea  {
        width: unset;
    }
}