/*validation message*/
.error-text {
    color: red;
    font-size: 13px;
    display: block;
    margin-top: 2px;
}
/* Full-page centered loader */
#loader {
    display: none; /* Initially hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.85);
    z-index: 9999;
    font-weight: bold;
    color: #333;
    font-size: 18px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  /* Spinner after text */
  #loader::after {
    content: "";
    display: block;
    width: 90px;
    height: 90px;
    margin-top: 15px;
    border: 9px solid #ccc;
    border-top-color: #185EC8;
    border-radius: 50%;
    animation: spin 2s linear infinite;
  }

  /* Animation for spinner */
  @keyframes spin {
    to { transform: rotate(360deg); }
  }

/* captcha */
  .captcha-code-full {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    text-align: left;
  }
  
  .captcha-code-full .captcha-code-img {
    width: auto;
    height: auto;
    margin: 0;
    padding: 5px 30px;
    border: 1px solid #f1f1f1;
    background-color: #fff;
    display: inline-block;
  }
  .captcha-code-full .captcha-code-input {
    width: 280px;
    height: auto;
    margin: 0;
    padding: 0;
    display: inline-block;
  }