.contact-form {
    background-color: var(--background-color);
}

.contact-form .map-container {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.contact-form .map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

.contact-form .form-control {
    border-radius: 0;
    border: none;
    padding: 15px 20px;
    font-size: 14px;
    color: #666;
    height: 50px;
    margin-bottom: 20px;
}

.contact-form .form-control:focus {
    box-shadow: 1px 1px 10px rgba(0, 0, 0, .1);
}

.contact-form textarea.form-control {
    height: 150px;
}

.contact-form .btn {
    border-radius: 0;
    border: none;
    padding: 15px 30px;
    font-size: 12pt;
    color: #fff;
    background-color: var(--primary-color);
    transition: all .3s ease-in-out;
    text-transform: uppercase;
    text-align: center;
}

.contact-form .btn:hover {
    background-color: var(--primary-color);
}

.contact-form .btn:focus {
    box-shadow: 1px 1px 10px rgba(0, 0, 0, .1);
}