.complex_form {
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    border-width: 0px;
    background-color:#ffffff;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    font-family: 'DM Sans';
  }
  
  .complex_form .form_title {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    padding: 10px;
    margin-bottom: 10px;
    color: rgb(35, 41, 88);
  }
  
  .complex_form .form_element {
    margin-bottom: 10px;
    font-size: 20px;
    font-family: inherit;
    border-radius: 10px;
    border-width: 0px;
    background-color: #eaeaef;
    padding: 5px 10px 5px 10px;
  }

  .complex_form textarea {
    font-family: inherit;
    margin-bottom: 10px;
    font-size: 20px;
    border-radius: 10px;
    border-width: 0px;
    background-color: #eaeaef;
    padding: 5px 10px 5px 10px;
  }

  .add_image_form {
    display: none;
  }

  #add_cmt_form {
    display: none;
  }

  #img-submit-cont {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  
  .btn {
    border-radius: 10px;
    border-width: 0px;
    text-align: center;
    font-size: 20px;
    font-family: inherit;
    color: #ffffff;
    background: #38398d;
    padding: 10px 20px 10px 20px;
    margin-top: 10px;
    margin-bottom: 5px;
    transition: all .2s ease-in-out;
  }
  
  .btn:hover {
    transform: scale(1.08) perspective(1px);
    transition: all .2s ease-in-out;
  }
  