body {
    font-family: Helvetica;
    height: 100vh;
    background-image: linear-gradient(to right, rgba(86, 86, 89, 0.885), rgba(104, 104, 107, 0.869)), url('vote.png');
    background-size: contain;
    background-repeat: repeat;
    background-position-x: center;
  }

  #eligibility-section {
    width: 400px;
    margin: auto;
    margin-top: 30px;
    padding: 20px;
    background-color: #d6d3d1;
    border-radius: 10%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }

  .input-container {
    margin-bottom: 15px;
  }

  .input-container > label {
    display: block;
    margin-bottom: 3px;
  }

  .input-container > input {
    width: 100%;
    height: 28px;
    /* border: none; */
    border-radius: 5px;
    font-family: Helvetica;
    font-size: 16px;
    border: none;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }

  #btn,
  #btn1 {
    text-align: center;
  }

  #eligiblity-btn,
  #registration-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    font-family: inherit;
    font-size: 16px;
    background-color: #4681f4;
    color: #fafaf9;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }

  #registration-section {
    width: 360px;
    margin: auto;
    margin-top: 20px;
    padding: 10px;
    background-color: #d6d3d1;
    border-radius: 10%;
  }

  .input-container1 {
    display: flex;
    margin-bottom: 15px;
    justify-content: space-between;
  }

  .input-container1 > input {
    height: 28px;
    height: 28px;
    /* border: none; */
    border-radius: 5px;
    font-family: Helvetica;
    font-size: 16px;
  }

  @media only screen and (min-width: 200px) and (max-width: 400px){
   /* styles covers all width between 200px to 400px //   */
   #eligibility-section, #registration-section {
    width: auto;
   }
   .input-container1 {
    flex-direction:column;
  }
  
}
