.contact-form {
    max-width: 70%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.address-box {
    background-color: #D94350;
    max-width: 70%;
    margin: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.address {
    color: white;
    font-weight: bold;
    text-align: center;
}

@media screen and (min-width:700px) {
    .contact-form, .address-box {
        max-width: 50%;
    }
}

@media screen and (min-width:1200px) {
    .contact-form, .address-box {
        max-width: 30%;
    }
}

input, textarea {
    display: block;
    margin-bottom: 10px;
}

input[type="text"], textarea {
    width: 100%;
}

.span-text {
    font-weight: bold;
}

.form-control:focus {
    border-color: #A65A5A;
    outline: none;
    box-shadow: 0 0 0 .2rem rgba(166, 90, 90, 0.2);
}