
.loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
  }
  
  .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
  }

  @-webkit-keyframes animate-loading {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  @keyframes animate-loading {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  .success-message {
    display: none;
    color: #000;
    text-align: center;
    padding: 5px 10px 10px 0;
    margin-bottom: 10px;
    font-weight: 600;
  }
  
  .error-message {
    display: none;
    color: #ed3c0d;
    text-align: left;
    padding: 5px 0 5px 0;
    font-weight: 600;
  }
  
  .error-message br + br {
    margin-top: 15px;
  }

  .capitalize1 {
    text-transform: capitalize;
  }