/*my old css for form*/
     
     .mycopytext{
        margin-top: 1px;
        font-size: 12px;
    }
    
    .mycopytext a:hover{
        color: navy;
    }
    .mycopytext a{
        color: blue;
    }
    
    
    .myicon{
    position: absolute;
    background: transparent;
    border-radius: 5px 0px 0px 5px;
    padding: 10px 7px;
    margin: 2px;
    font-size: 17px
   }
  
  
form {
    width: 360px;
    background: #fff;
    padding: 10px 20px 0px 20px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
    margin: 3rem 1.5rem;
    height: fit-content;
}

label {
    display: block;
    margin-bottom: 8px;
    display: none;
}

input,
select {
    width: 100%;
    padding: 8px;
    margin-bottom: 16px;
    box-sizing: border-box;
    border: 1px solid #00bc8b;
    border-radius: 5px;
    padding-left: 30px;
    padding-right: 10px;
}

#submitBtn {
    background: #00bc8b;
    color: #fff;
    cursor: pointer;
    border: none;
    border-radius: 25px;
    box-shadow: rgba(0, 0, 0, 0.56) 0px 3px;
    width: 100%;
    padding: 7px;
    font-weight: 600;
    margin-bottom: 16px;
}

#submitBtn:hover {
    background: green;
    text-decoration: none;
}


.mylogo{
    width: 180px;
    margin-bottom: 15px;
}

html {
    animation: colorChange 5s infinite alternate;
        }

        @keyframes colorChange {
            0% {
                background-color: #ff6347; /* Initial background color */
            }
            100% {
                background-color: #87ceeb; /* Final background color */
            }
        }

body {
    margin: 0;
    padding: 0;
    display: flex;
    height: 100vh;
    justify-content: center;
  background: url("#"), linear-gradient(233deg, #e56420, #c22525, #3d9c31, #37bbde);
  background-size: cover;
  background-blend-mode: hard-light;
  -webkit-animation: hue-rotate 3s linear infinite;
          animation: hue-rotate 3s linear infinite;
}

@-webkit-keyframes hue-rotate {
  from {
    -webkit-filter: hue-rotate(0);
    -moz-filter: hue-rotate(0);
    -ms-filter: hue-rotate(0);
    filter: hue-rotate(0);
  }
  to {
    -webkit-filter: hue-rotate(360deg);
    -moz-filter: hue-rotate(360deg);
    -ms-filter: hue-rotate(360deg);
    filter: hue-rotate(360deg);
  }
}

@keyframes hue-rotate {
  from {
    -webkit-filter: hue-rotate(0);
    -moz-filter: hue-rotate(0);
    -ms-filter: hue-rotate(0);
    filter: hue-rotate(0);
  }
  to {
    -webkit-filter: hue-rotate(360deg);
    -moz-filter: hue-rotate(360deg);
    -ms-filter: hue-rotate(360deg);
    filter: hue-rotate(360deg);
  }
}  




#loadingIcon {
      width: 20px;
      height: 20px;
    /*  background: url('https://upload.wikimedia.org/wikipedia/commons/a/ad/YouTube_loading_symbol_3_%28transparent%29.gif?20140201131911') center center no-repeat; */
     background: url('https://pg.digitalsdr.in/assets/img/animated_spinner.webp') center center no-repeat;
      background-size: cover;
      display: inline-block;
      vertical-align: middle;
      margin-right: 5px;
      animation: spin 1s infinite linear;
    }

    .hidden {
      display: none;
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }