.appointment form {
    max-width: 300px;
    margin: 0px auto;
    padding: 35px 50px;
    background: #f4f7f8;
    border-radius: 10px;
  }
  .appointment{
    background-color: #550000;
    padding: 70px 0px;
  }
  
  .appointment form input[type="text"],
  .appointment form input[type="password"],
  .appointment form input[type="date"],
  .appointment form input[type="datetime"],
  .appointment form input[type="email"],
  .appointment form input[type="number"],
  .appointment form input[type="search"],
  .appointment form input[type="whatsapp"],
  .appointment form input[type="time"],
  .appointment form input[type="url"],
  .appointment form textarea,
  .appointment form select {
    background: rgba(255,255,255,0.1);
    border: none;
    font-size: 16px;
    height: auto;
    margin: auto;
    outline: 0;
    padding: 8px;
    width: 100%;
    background-color: #e8eeef;
    color: black;
    box-shadow: 0 1px 0 rgba(0,0,0,0.03) inset;
    margin-bottom: 10px;
  }
  
  .appointment input[type="radio"],
  .appointment  input[type="checkbox"]
  
  {
    margin: 0 4px 8px 0;
  }
  
  .appointment  select {
    padding: 6px;
    height: 32px;
    border-radius: 2px;
  }
  
  /* button {
    padding: 19px 39px 18px 39px;
    color: #FFF;
    background-color: #4bc970;
    font-size: 18px;
    text-align: center;
    font-style: normal;
    border-radius: 5px;
    width: 100%;
    border: 1px solid #3ac162;
    border-width: 1px 1px 3px;
    box-shadow: 0 -1px 0 rgba(255,255,255,0.1) inset;
    margin-bottom: 10px;
  } */
  
  .appointment  fieldset {
    /* margin-bottom: 20px; */
    border: none;
  }
  
  .appointment  legend {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #09d066;
  }
  
  .appointment  label {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 400;
    color: #550000;
  }
  
  .appointment   label.light {
    font-weight: 300;
    display: inline;
  }
  
  .appointment  .number {
    background: #550000;
    color: #fff;
    height: 35px;
    width: 35px;
    display: inline-block;
    font-size: 1.1rem;
    margin-right: 10px;
    line-height: 37px;
    text-align: center;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
    border-radius: 100%;
  }
  
  
  
  .appointment  form {
      max-width: 500px;
    }
    .appointment  .custom-btn {
        width: 100%;
        height: 50px;
        color: #fff;
        border-radius: 5px;
        padding: 10px 25px;
        font-family: 'Lato', sans-serif;
        font-weight: 450;
        background: transparent;
        cursor: pointer;
        transition: all 0.5s ease;
        position: relative;
        display: inline-block;
         box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
         7px 7px 20px 0px rgba(0,0,0,.1),
         4px 4px 5px 0px rgba(0,0,0,.1);
        outline: none;
        font-size: 1.3rem;
        margin-top: 12px;
      }
      .appointment   .btn-3 {
        background: #09d066;
      background: linear-gradient(0deg, #09d066 0%, #09d066 100%);
        width: 100%;
        height: 50px;
        line-height:50px;
        padding: 0;
        border: none;
        
      }
      .appointment  .btn-3 span {
        position: relative;
        display: block;
        width: 100%;
        height: 100%;
      }
      .appointment  .btn-3:before,
      .appointment  .btn-3:after {
        position: absolute;
        content: "";
        right: 0;
        top: 0;
         background:#09d066;
        transition: all 0.3s ease;
      }
      .appointment  .btn-3:before {
        height: 0%;
        width: 2px;
      }
      .appointment .btn-3:after {
        width: 0%;
        height: 2px;
      }
      .appointment .btn-3:hover{
         background: transparent;
        box-shadow: none;
      }
      .appointment  .btn-3:hover:before {
        height: 100%;
      }
      .appointment  .btn-3:hover:after {
        width: 100%;
      }
      .appointment  .btn-3 span:hover{
         color: #09d066;
      }
      .appointment  .btn-3 span:before,
      .appointment  .btn-3 span:after {
        position: absolute;
        content: "";
        left: 0;
        bottom: 0;
         background: #09d066;
        transition: all 0.3s ease;
      }
      .appointment  .btn-3 span:before {
        width: 2px;
        height: 0%;
      }
      .appointment .btn-3 span:after {
        width: 0%;
        height: 2px;
      }
      .appointment .btn-3 span:hover:before {
        height: 100%;
      }
      .appointment .btn-3 span:hover:after {
        width: 100%;
      }
      @media (max-width: 421px){
        .appointment form {
          /* max-width: 300px; */
          margin: 0px auto;
          padding: 30px 25px;
          background: #f4f7f8;
          border-radius: 10px;
        }
      }