* {
    box-sizing: border-box;
  }
  body,
  p {
    padding: 0;
    margin: 0;
    font-family: "Open Sans", sans-serif;
  }
  
  .form_section {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background-color: #e3e7ea;
    background: url("../img/bg1.jpg") no-repeat;
    background-size: 100%;
    flex-wrap: wrap;
  }
  .top_logo {
    text-align: center;
    width: 100%;
  }
  .top_logo img {
    width: 200px;
  }
  .formBx {
    width: 500px;
    display: flex;
    flex-wrap: wrap;
    box-shadow: -3px -3px 7px #f5f5f5 inset, 3px 3px 7px #bbc3cc inset;
    padding: 30px 40px 40px;
    border-radius: 20px;
    background: #eee;
  }
  .formFild {
    width: 100%;
  }
  .formFild input,
  .formFild select {
    background: transparent;
    box-shadow: -3px -3px 7px #f5f5f5, 3px 3px 7px #bbc3cc;
    border: solid 1px #e0e0e0;
    width: 100%;
    margin-top: 20px;
    height: 45px;
    outline: none !important;
    padding: 0 20px;
    color: #444;
    opacity: 1 !important;
    font-family: "Open Sans", sans-serif;
    border-radius: 7px;
  }
  .formFild input::placeholder {
    opacity: 1 !important;
    color: #444 !important;
    font-family: "Open Sans", sans-serif;
  }
  .formFild select option {
    color: #444 !important;
  }
  .formText {
    width: 100%;
  }
  .formText h2 {
    padding: 0;
    margin: 0;
    padding-top: 40px;
    text-align: center;
    font-size: 25px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 800;
  }
  .formButton {
    width: 100%;
  }
  .submitBtn {
    width: 100%;
    height: 45px;
    background-color: #1d1d36;
    text-align: center;
    padding: 10px;
    color: #fff;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    font-size: 20px;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 7px;
    transition: all 1 ease-in;
  }
  .submitBtn:hover {
    opacity: 0.9;
  }
  
  /* responsive design start */
  
  @media screen and (max-width: 767px) {
    .formBx {
      width: 93%;
      margin: 0 auto;
    }
  }
  

  .form_section form {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
  .form_section p {
    max-width: 575px;
    text-align: center;
    margin-top: 25px;
    font-size: 13px;
    line-height: 1.6;
    font-weight: 400;
    color: #fff;
  }
  
  .form_section p span {
    font-weight: 900;
    font-size: 15px;
    margin-right: 3px;
  }