body {
    width: 100%;
    height: 100%;
    background-image: url("../img/farm2.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow-x: hidden;
  }
  
  ul, li, a {
    margin-bottom: 0;
  }
  /* Card CSS */
  .form-container {
    margin: 0rem auto 10% auto;
    padding: 5%;
    width: 35rem;
    word-wrap: break-word;
    text-align: left;
  }
  
  .fix-width {
    width: 50%;
  }
  
  .absolute-container {
    /*
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);*/
    z-index: 1;
  }
  
  /* Float left and right of Card CSS */
  .form-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: left;
    text-align: left;
  }
  
  .set-flex {
    display: flex;
  }
  
  /* Texts CSS */
  h1 {
    font-size: 30px;
    margin-bottom: 1rem;
  }
  
  label {
    font-weight: normal !important;
  }
  
  /* Adjusted input properties */
  input[type="text"] {
    line-height: 40px;
    width: 15rem;
    margin-bottom: 0.5rem;
  }
  
  input[type="radio"] {
    line-height: 20px;
    width: 1rem;
    margin-left: 10px;
  }
  
  input[type="file"] {
    width: 15rem;
  }
  input[type="file"]::file-selector-button {
    color: white;
  }
  
  @media screen and (max-width: 900px) {
    h1 {
      font-size: 38px;
      text-align: left;
    }
  
    .form-container {
      margin: 0rem auto 10% auto;
      width: 20rem;
      word-wrap: break-word;
    }
  
    .set-flex {
      display: flex;
      flex-direction: column;
    }
  
    .form-flex {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-evenly;
      align-items: left;
      text-align: justify;
      flex-direction: column;
    }
  
    input[type="text"] {
      line-height: 40px;
      width: 11rem;
      margin-bottom: 0.5rem;
    }
  
    input[type="file"] {
      width: 11rem;
    }
  }
  