.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
  }

  .modal-content {
    background-color: #000000;
    padding: 30px;
    border-radius: 8px;
    position: relative;

  }
  .modal-content p{
    color: #fff;
  }
  .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #fff;
  }
  label{
    color: #fff;
  }
  .modal-content h2{
    color: #fff;
  }
  .error-message {
    color: red;
    margin-top: 10px;
    font-weight: bold;
    font-size: 12px;
    margin-bottom: 0;
  }
  .text-green-500{
    color: green;
  }



  .tooltip.has-error {
    color: var(--auth-error-tooltip-color, #fff);
    background: var(--auth-error-tooltip-background, rgb(226 76 76 / .9));
    border-color: var(--auth-error-tooltip-border-color, rgb(226 76 76 / .9));
}
.tooltip {
  font-size: var(--auth-tooltip-font-size, 14px)
--auth-tooltip-font-size is not defined
;
  font-weight: var(--auth-tooltip-font-weight, 500);
  padding: var(--auth-tooltip-padding, 8px 12px);
  text-align: var(--auth-tooltip-text-align, center);
  border-radius: var(--auth-tooltip-border-radius, 5px);
  border-width: var(--auth-tooltip-border-width, 1px);
  box-shadow: var(--auth-tooltip-box-shadow, 0 0 5px 0 rgb(0 0 0 / .2));
}
.tooltip.has-error:before {
  border-color: transparent transparent var(--auth-error-tooltip-background, rgb(226 76 76 / .9));
}
.tooltip:before {
  content: " ";
  border-style: solid;
  border-width: 0 8px 6px;
  position: absolute;
  top: -5px;
  right: 0;
  left: 0;
  width: 10px;
  margin: 0 auto;
}