.valid {
    color: #E41D76;
  }
  .valid:before {
    content: "";
    position: relative;
    display: inline-block; 
    left: -10px;
    width: 12px;
    height: 12px;
    background-color: #E41D76;
    border-radius: 50%;
  }
  
  .invalid {
    color: black;
  }
  
  .invalid:before {
    content: "";
    position: relative;
    display: inline-block; 
    align-items: center;
    left: -10px;
    width: 12px;
    height: 12px;
    background-color: black;
    border-radius: 50%;
  }

  .signup_loader {
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }