body h1, body h2, body h3, body h4, body h5, body h6, body a, body li, body p, body input, body select, body textarea {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #000000;
  }
  body a {
    text-decoration: none !important;
    color: #000000;
  }
  body header {
    border-bottom: 1px solid #000000;
  }
  body header .title {
    font-size: 24px;
    font-weight: 700;
    color: #000000 !important;
  }
  @media (max-width: 480px) {
    body header .title {
      font-size: 20px;
    }
  }
  body header .menu-item {
    font-size: 20px;
    color: #000000 !important;
    transition: all .2s ease-out;
  }
  body header .menu-item:hover {
    color: #81B929;
    border-bottom: 4px solid #81B929;
  }
  body main {
    background-color: #f8f8f8;
  }
  body main .mob-nav .uk-grid > div {
    border-left: 1px solid #999999;
  }
  body main .mob-nav .uk-grid > div:first-child {
    border: none;
  }
  body main .mob-nav a {
    font-size: 20px;
    font-weight: 700;
    color: #81B929;
  }
  body main .form-content {
    padding: 50px 0;
    width: 90%;
    margin: 0 auto;
  }
  body main .form-content .form-row {
    display: grid;
    grid-template-columns: 30% 70%;
    grid-gap: 20px;
    margin: 20px 0;
    align-items: center;
  }
  @media (max-width: 480px) {
    body main .form-content .form-row {
      grid-template-columns: 100%;
    }
  }
  body main .form-content .form-row .form-label {
    font-size: 20px;
    font-weight: 700;
    text-align: right;
  }
  @media (max-width: 480px) {
    body main .form-content .form-row .form-label {
      font-size: 18px;
      text-align: left;
    }
  }
  body main .form-content .form-row .form-input {
    width: 100%;
  }
  body main .form-content .form-row .form-input .inputs {
    width: 80%;
    padding: 10px;
    font-size: 18px;
    border: 1px solid #c0c0c0;
    outline: none;
  }
  body main .form-content .form-row .form-input .inputs:focus {
    border-color: #81B929;
  }
  @media (max-width: 480px) {
    body main .form-content .form-row .form-input .inputs {
      font-size: 16px;
    }
  }
  body main .form-content textarea {
    width: 96%;
    font-size: 18px;
    padding: 10px 15px;
    font-weight: 700;
    color: #81B929;
  }
  @media (max-width: 480px) {
    body main .form-content textarea {
      width: 90%;
      height: 150px;
      font-size: 16px;
    }
  }
  body main .form-content .compulsory {
    font-size: 12px;
    color: #999999;
    margin: 20px 0;
    text-align: right;
  }
  @media (max-width: 480px) {
    body main .form-content .compulsory {
      text-align: left;
    }
  }

  body main .form-content .imgRef {
    font-size: 12px;
    color: #999999;
    margin-top: -20px;
    
  }

  @media (min-width: 480px) {
    body main .form-content .imgRef {
      font-size: 12px;
      color: #999999;
      margin-left: 260px;
      
    }
  }


  body main .form-content button {
    padding: 10px 40px;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    border: none;
    margin: 10px;
    width: 150px;
  }
  body main .form-content button#copybtn {
    background-color: #81B929;
    font-weight: bold;
  }
  body main .form-content button#savebtn {
    background-color: #f6ca47;
    color:#3a4626  ;
    font-weight: bold;
  }
  body main .form-content .message {
    font-size: 18px;
    padding: 20px 0;
    color: #999999;
  }
  @media (max-width: 480px) {
    body main .form-content {
      width: 100%;
      padding: 20px 0;
    }
  }
  body footer {
    padding: 25px 0;
  }
  body footer p {
    padding: 20px 0;
    font-size: 18px;
  }
  body footer p a {
    color: #81B929;
  }
  
  ::-webkit-scrollbar {
    width: 8px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #ffffff;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #006699;
    transition: all .3s ease-out;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #81B929;
    transition: all .3s ease-out;
  }
  
  .errormsg{
    color:red; 
    text-align:right;
    margin-top:-23px;
  }

