/* Loader Overlay */
.loader-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

/* Spinner */
.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3; /* Light grey */
    border-top: 5px solid #3498db; /* Blue */
    border-radius: 50%;
    animation: spin 1s linear infinite;
    }

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

#candidateRegisterSubmit{
    font-size: 15px;
    background-color: #256EFF;
    border:none;
    outline:none;
    display: flex;
    align-items:center;
    justify-content: center;
    gap: 0.5rem;
    padding: 10px;
    border-radius:1rem;
    color:#fff;
    cursor:pointer;
  }

  #candidateLoginSubmit{
    font-size: 15px;
    background-color: #256EFF;
    border:none;
    outline:none;
    display: flex;
    align-items:center;
    justify-content: center;
    gap: 0.5rem;
    padding: 10px;
    border-radius:1rem;
    color:#fff;
    cursor:pointer;
  }

  .btn-ring{
    display: none;
  }
  .btn-ring:after {
    content: "";
    display: block;
    width: 23px;
    height: 23px;
    margin:0px;
    border-radius: 50%;
    border: 3px solid #fff;
    border-color: #fff transparent #fff transparent;
    animation: ring 1.2s linear infinite;
  }
  @keyframes ring {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
