.button {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    background-color: #3D8B40; ;
    border: 0px;
    border-radius: 50px;
    box-shadow: rgba(27, 31, 35, 0.1) 0 1px 0;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    font-family: -apple-system, system-ui, "Segoe UI", Helvetica, Arial,
      sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
    font-size: 16px;
    font-weight: 600;
    line-height: 10px;
    padding: 18px;
    width: 120px;
    position: relative;
    text-align: center;
    overflow: hidden;
    transition: all 0.25s ease;
    margin-top: 1rem;
  }
  .button:active {
    transform: scale(0.85);
  }

  button:hover {
    background-color: #316f33;
    color: whitesmoke;
  
}

.generate-button{
  
  background-color: #3D8B40;
  color: black;
  font-family: -apple-system, system-ui, "Segoe UI", Helvetica, Arial,
      sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  font-size: 17px;
  color: whitesmoke;
 
}
  
  .alert {
    position: relative;
    display: block;
    padding: 1em 1.8em;
    font-size: 0.9em;
    font-weight: 300;
    line-height: 1.2;
    text-align: left;
    margin-top: 0.4em;
    margin-bottom: 0.4em;
    background: transparent;
    color: #252525;
    background: #ffffff;
    border: 1px solid #d6d6d6;
  }
  
  .button--loading .loading {
    visibility: hidden;
    opacity: 0;
  }
  
  .loading-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: inherit;
  }
  
  .loading-1:after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 3px solid #fff;
    width: 30px;
    height: 30px;
    border-left: 3px solid transparent;
    border-bottom: 3px solid transparent;
    animation: loading1 1s ease infinite;
    z-index: 10;
  }
  
  .loading-1:before {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 3px dashed #fff;
    width: 30px;
    height: 30px;
    border-left: 3px solid transparent;
    border-bottom: 3px solid transparent;
    animation: loading1 1s linear infinite;
    z-index: 5;
  }
  
  @keyframes loading1 {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  .loading-2 {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(107, 38, 217, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  .loading-2:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    animation: loading2 1s ease infinite;
    z-index: 10;
    background: rgba(255, 255, 255, 0.25);
  }
  
  .loading-2:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    animation: loading2 1s ease-out infinite;
    z-index: 10;
    background: rgba(255, 255, 255, 0.25);
  }
  
  @keyframes loading2 {
    0% {
      transform: translate(0, 100%);
    }
    100% {
      transform: translate(0, -100%);
    }
  }
  
  .loading-3 {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(107, 38, 217, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  .loading-3:after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 4px;
    animation: loading3 1s ease infinite;
    z-index: 10;
    background: rgb(255, 255, 255);
    border-radius: 10px;
  }
  
  @keyframes loading3 {
    0% {
      width: 0;
    }
    50% {
      width: 100%;
    }
    100% {
      width: 100%;
      opacity: 0;
    }
  }
  
  .loading-4 {
    position: absolute;
    bottom: 00;
    right: 0;
    width: 100%;
    height: 100%;
    background: #3D8B40;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  .loading-4-dot {
    width: 8px;
    height: 8px;
    background: whitesmoke;
    border-radius: 50%;
    position: absolute;
  }
  .loading-4-span1 {
    animation: loading4 1s ease infinite;
  }
  .loading-4-span2 {
    animation: loading4 1s ease infinite 0.5s;
  }
  .loading-4-span3 {
    animation: loading4 1s ease infinite 1s;
  }
  
  @keyframes loading4 {
    0% {
      transform: translate(-40px) scale(0);
    }
    50% {
      transform: translate(0px) scale(1);
    }
    100% {
      transform: translate(40px) scale(0);
    }
  }
  
  .loading-5 {
    position: absolute;
    bottom: 00;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(107, 38, 217, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    animation: loading5 1.5s ease-in-out 0s infinite;
  }
  
  @keyframes loading5 {
    0% {
      transform: translateX(-200px);
    }
    100% {
      transform: translateX(200px);
    }
  }
  
  .loading-6 {
    position: absolute;
    bottom: 00;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(107, 38, 217, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  .loading-6:before {
    content: "";
    width: 30px;
    height: 30px;
    background: #fff;
    position: absolute;
    border-radius: 50%;
    animation: loading6 1.5s ease infinite;
  }
  .loading-6:after {
    content: "";
    width: 40px;
    height: 40px;
    border: 5px solid rgb(255, 255, 255, 0.5);
    position: absolute;
    border-radius: 50%;
    animation: loading6 3s ease infinite;
  }
  
  @keyframes loading6 {
    0% {
      transform: scale(0);
    }
    50% {
      transform: scale(1);
    }
    100% {
      transform: scale(0);
    }
  }
  .loading-7 {
    position: absolute;
    bottom: 00;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(107, 38, 217, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  .loading-7:before {
    content: "";
    width: 30px;
    height: 30px;
    background: #fff;
    position: absolute;
    border-radius: 50%;
    animation: loading7 1s ease infinite;
  }
  .loading-7:after {
    content: "";
    width: 40px;
    height: 40px;
    border: 5px solid rgb(255, 255, 255, 0.5);
    position: absolute;
    border-radius: 50%;
    animation: loading7 1s ease infinite 0.5s;
  }
  
  @keyframes loading7 {
    0% {
      transform: scale(0);
    }
    50% {
      transform: scale(1);
    }
    100% {
      transform: scale(0);
    }
  }
  
  .loading-8 {
    position: absolute;
    left: 10px;
    bottom: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    background: rgba(107, 38, 217, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  .loading-8 span {
    background: #ffff;
    position: absolute;
  }
  
  .loading-8 .loading-8-span1 {
    width: 100%;
    height: 5px;
    left: 0px;
    bottom: 0px;
    transform: translate(-100%);
    animation: loading8-1 2s linear infinite;
  }
  
  @keyframes loading8-1 {
    100% {
      transform: translate(100%);
    }
  }
  .loading-8 .loading-8-span2 {
    width: 5px;
    height: 100%;
    right: 0px;
    bottom: 0px;
    transform: translate(0, 100%);
    animation: loading8-2 2s linear infinite 1s;
  }
  
  @keyframes loading8-2 {
    100% {
      transform: translate(0, -100%);
    }
  }
  .loading-8 .loading-8-span3 {
    width: 100%;
    height: 5px;
    right: 0px;
    top: 0px;
    transform: translate(100%);
    animation: loading8-3 2s linear infinite;
  }
  
  @keyframes loading8-3 {
    100% {
      transform: translate(-100%);
    }
  }
  .loading-8 .loading-8-span4 {
    width: 5px;
    height: 100%;
    left: 0px;
    top: 0px;
    transform: translate(0, -100%);
    animation: loading8-4 2s linear infinite 1s;
  }
  
  @keyframes loading8-4 {
    100% {
      transform: translate(0, 100%);
    }
  }
  
  .loading-9 {
    position: absolute;
    left: 10px;
    bottom: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    background: #6b26d9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  .loading-9 span {
    background: #ffff;
    position: absolute;
  }
  
  .loading-9 .loading-9-span1 {
    top: 0;
    left: -100%;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, transparent, #fff);
    animation: btn-anim1 1s linear infinite;
  }
  
  @keyframes btn-anim1 {
    0% {
      left: -100%;
    }
    50%,
    100% {
      left: 100%;
    }
  }
  
  .loading-9 .loading-9-span2 {
    top: -100%;
    right: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #fff);
    animation: btn-anim2 1s linear infinite;
    animation-delay: 0.25s;
  }
  
  @keyframes btn-anim2 {
    0% {
      top: -100%;
    }
    50%,
    100% {
      top: 100%;
    }
  }
  
  .loading-9 .loading-9-span3 {
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 5px;
    background: linear-gradient(270deg, transparent, #fff);
    animation: btn-anim3 1s linear infinite;
    animation-delay: 0.5s;
  }
  
  @keyframes btn-anim3 {
    0% {
      right: -100%;
    }
    50%,
    100% {
      right: 100%;
    }
  }
  
  .loading-9 .loading-9-span4 {
    bottom: -100%;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(360deg, transparent, #fff);
    animation: btn-anim4 1s linear infinite;
    animation-delay: 0.75s;
  }
  
  @keyframes btn-anim4 {
    0% {
      bottom: -100%;
    }
    50%,
    100% {
      bottom: 100%;
    }
  }
  