   .contact-form button[type="submit"] {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: 1px solid #3078fb;
    color: #fff;
    display: block;
    font-size: 18px;
    margin-top: 16px;
    padding: 6px 16px;
    border-radius: 10px;
    transition: all 0.3s ease 0s;
    background: #e7440e;
}
    .contact-form input[type="text"], .contact-form input[type="email"] {
        /*background: rgb(207 225 232) none repeat scroll 0 0;*/
        border: 1px solid #012e55;
        border-radius: 6px;
        color: #000;
        padding: 1px 0px;
        height: 40px;
        margin-bottom: 10px;
        padding-left: 14px;
        width: 100%;
    }
/* Form Container (Card Style) */
.form-wrapper {
    position: absolute;
    top: 68%;
    /*left: 84%;*/
    transform: translate(-50%, -50%);
    width: 380px;
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.25);
}
.form-wrapper h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #2c2c2c;
    font-size: 24px;
}

/* Form Fields */
.contact-form form input,
.contact-form form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid #dcdcdc;
    font-size: 14px;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 12px;
    background: #6a1b9a;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}

.submit-btn:hover {
    background: #4a1370;
}
 .page-area {
           margin-top: 183px;
}
/* MAIN WRAPPER */
.page-area {
  position: relative;
  width: 100%;
  min-height: 500px;
  overflow: hidden;
}

/* IMAGE RESPONSIVE */
.bg-img {
  width: 100%;
  height: auto;
  display: block;
}

/* FORM CARD */
.form-wrapper {
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  background: #fff;
  padding: 25px;
  width: 320px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  z-index: 2;
}

.form-wrapper h2 {
  text-align: center;
  margin-bottom: 15px;
}

/* INPUTS */
/*.contact-form input,*/
/*.contact-form textarea {*/
/*  width: 100%;*/
/*  padding: 10px;*/
/*  margin-bottom: 10px;*/
/*  border: 1px solid #ccc;*/
/*  border-radius: 4px;*/
/*}*/

/* BUTTON */
.submit-btn {
  width: 100%;
  background: #007bff;
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* ---------------- MOBILE RESPONSIVE FIX ---------------- */
@media (max-width: 767px) {

  .page-area {
    min-height: auto;
  }
  .form-wrapper {
        position: static;
        transform: none;
        width: 100%;
        margin-bottom: 14px;
        padding: 30px;
        margin-top: 3px;
        box-shadow: none;
        border-radius: 0;
        border:2px solid red;
  }

  .bg-img {
    width: 100%;
    height: auto;
  }
}

   /* Hide contact form on mobile devices */
/*@media (max-width: 767px) {*/
/*  .desktop-only-form {*/
/*    display: none !important;*/
    
/*  }*/
/*}*/