.secure-captcha {
    width: fit-content;             
    background-color: #fff;
    font-family: 'Segoe UI', sans-serif;
  }

  .secure-captcha__canvas {
    display: block;
    width: 100%;
    height: 80px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 12px;
    background-color: #f9f9f9;
  }

  .secure-captcha__input-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 12px;
  }

  .secure-captcha__input {
    
    padding: 8px 38px 8px 2px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
  }

.secure-captcha__refresh-icon {
    position: absolute;
    top: 50%;
    right: 27px;
    transform: translateY(-50%);
    font-size: 18px;
    color: #209e8c;
    cursor: pointer;
    user-select: none;
}

  .secure-captcha__refresh-icon::before {
    content: "\21bb"; /* Unicode for ↻ */
    display: inline-block;
    transition: transform 0.3s ease;
  }

  .secure-captcha__refresh-icon:hover::before {
    transform: rotate(180deg);
    color: #0056b3;
  }

  .secure-captcha__button {
    width: 100%;
    padding: 8px;
    background-color: #007BFF;
    color: #fff;
    font-size: 14px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-bottom: 10px;
  }

  .secure-captcha__button:hover {
    background-color: #0056b3;
  }

  .secure-captcha__result {
    font-weight: 600;
    font-size: 14px;
    min-height: 20px;
  }

  .secure-captcha__result--success {
    color: green;
  }

  .secure-captcha__result--error {
    color: red;
  }