 .form-wrapper{
      max-width: 1250px;
      width: 100%;
      margin: 0 auto;
      border-radius: 25px;
    }
  @media only screen and (max-width: 1360px ){
     .form-wrapper{
      max-width: 1250px;
      width: 91%;
      margin: 0 auto;
      border-radius: 25px;
    }
    
  }
  @media only screen and (max-width: 600px ){
     .form-wrapper{
      max-width: 1250px;
      width: 85%;
      margin: 0 auto;
      border-radius: 25px;
    }
    
  }

    .upper-form{
      background-color: #f1f1f1;
      padding: 30px 30px 0px 30px;
      border-radius: 25px 25px 0px 0px;
    }

    .lower-form{

      background-color: #f1f1f1;
      padding: 0px 0px 20px 30px;
      display: flex;
      justify-content: center;
      flex-direction: column;
      justify-content: space-evenly;
      border-radius: 0px 0px 25px 25px;
    }

    .form-camp-styling{
      margin-bottom: 28px !important;
      padding: 12px  !important;
      border-radius: 15px  !important;
      border: none  !important;
      width: 100%  !important;
      box-sizing: border-box  !important;
      box-shadow: none !important;
    }

    .form-body{
      display: flex;
      flex-direction: column;
    }

    .form-tel-cont-wrapper{
      display: flex;
      gap: 50px;
    }

    @media only screen and (max-width: 900px){
      .form-tel-cont-wrapper{
        flex-direction: column;
        gap: 0;
      }
      .lower-form{
        display: flex;
        align-items: center;
        flex-direction: column !important;
        justify-content: space-evenly;
        border-radius: 0px 0px 15px 15px;
      }
    }

    .form-textarea{
      resize: none;
      height: 100px;
    }

    .dpd-wrapper{
      position: relative;
    }

    .form-dpd{
      background-color: white;
      color: #636466;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
    }

    .chevron-icon{
      position: relative;
      right: 10px;
    }

    .form-option-panel{
      display: none;
      background-color: white;
      border-radius: 15px;
      position: absolute;
      width: 100%;
      top: 0px;
      z-index: 10;
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
      overflow: hidden;
    }

    .form-option-panel.open{
      display: block;
    }

    .form-camp-option{
      background: transparent;
      border: none;
      border-bottom: 1px solid #f1f1f1;
      padding: 12px;
      width: 100%;
      text-align: left;
      cursor: pointer;
    }

    .form-camp-option:hover{
      color: #ed002f;
    }

    .character-alert{
        animation: color-change 1s infinite;
    }
    @keyframes color-change {
        0% { color: #ed002f; opacity: 55%;}
        50% { color: #ed002f; opacity: 100%; }
        100% { color: #ed002f; opacity: 55%;}
    }

    .button-submit-form{
      padding: 12px 50px;
      border-radius: 25px;
      border: none;
      background-color: #ed002f;
      color: white;
      cursor: pointer;
      font-size: 20px;
      flex-direction: column;
      width: 200px;
      font-weight: 450;
    }

    .button-submit-form:disabled{
      opacity: 0.5;
      cursor: not-allowed;
    }

    .form-char-used{
      position: relative;
      font-size: 10px;
      text-align: right;
      right: 25px;
      top: -25px;
      margin-bottom: 0px;
    }

    .form-dpd.error{
      outline: 2px solid #ed002f;
    }