/* Contact Form */
.form {
    height: 50vh;
    position: relative;
    background-image: url('../images/Background.png');
}

.form-header {
    position: relative;
    text-align: center;
    padding: 40px 10px;

}

.form-image {
    overflow: hidden;
}

.form-image img {
    position: absolute;
    /* top: -385%; */
    /* left: 31%; */
    /* width: 38%; */
    /* height: 100%; */
    right: 0px;
    /* top: 0px; */
    z-index: 0;
    /* object-fit: cover; */
    width: 8%;

    /* transform: rotate(90deg); */
}



.form-fields {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
}

.form-fields h3 {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    text-align: center;
    z-index: 1;
    padding-bottom: 70px;
    font-weight: 100;
    padding: 0px 50px 50px 50px;
}

.form-btn {
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 50px;
    border-radius: 25px;
    background: linear-gradient(135deg, #a67c3f, #c49b63);
    font-size: 18px;
    color: rgb(0, 0, 0);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 50px;
}

.form-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(196, 155, 99, 0.5);
}


/* =========================
   MOBILE VERSION
========================= */
@media (max-width: 768px) {

    .form-image img {
        display: none;
    }
    .form {
    height: auto;
    }

    .form-fields h3 {
        font-size: 20px;
    }
    
}