/*!**************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/public/styles/frontend.scss ***!
  \**************************************************************************************************************************/
body.thlogin-modal-open {
  overflow: hidden;
  padding-right: 15px;
}

.thlogin-popup-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.thlogin-popup-modal.thlogin-popup-modal--active {
  opacity: 1;
  visibility: visible;
}
.thlogin-popup-modal.thlogin-popup-modal--opening {
  animation: thlogin-fade-in 0.3s forwards;
}
.thlogin-popup-modal.thlogin-popup-modal--closing {
  animation: thlogin-fade-out 0.3s forwards;
}
.thlogin-popup-modal.thlogin-slide-in-right.thlogin-popup-modal--opening .thlogin-popup-form-container {
  animation: slideInFromRight 0.5s forwards !important;
}
.thlogin-popup-modal.thlogin-slide-in-right.thlogin-popup-modal--closing .thlogin-popup-form-container {
  animation: slideOutToRight 0.5s forwards !important;
}
.thlogin-popup-modal.thlogin-slide-in-left.thlogin-popup-modal--opening .thlogin-popup-form-container {
  animation: slideInFromLeft 0.5s forwards !important;
}
.thlogin-popup-modal.thlogin-slide-in-left.thlogin-popup-modal--closing .thlogin-popup-form-container {
  animation: slideOutToLeft 0.5s forwards !important;
}

.thlogin-popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}

.thlogin-popup-form-container {
  position: relative;
  z-index: 100;
  max-width: 500px;
  width: 400px;
  margin: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}
@media (max-width: 768px) {
  .thlogin-popup-form-container {
    width: 90%;
  }
}
@media (max-width: 480px) {
  .thlogin-popup-form-container {
    width: 95%;
  }
}

.thlogin-popup-close-button {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
  font-size: 24px;
  line-height: 1;
  color: #333;
  transition: color 0.2s ease-in-out;
  z-index: 100001;
}
.thlogin-popup-close-button:hover {
  color: #000;
}
.thlogin-popup-close-button .dashicons {
  width: 24px;
  height: 24px;
  font-size: 24px;
}

.thlogin-form {
  display: none;
  width: 100%;
  box-sizing: border-box;
}
.thlogin-form.thlogin-form--active {
  display: block;
}
.thlogin-form h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #222;
  font-size: 1.8em;
}

.thlogin-form-submit {
  text-align: center;
  width: 100%;
  margin: 0;
}
.thlogin-form-submit .thlogin-button .thlogin-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
  margin-right: 8px;
  vertical-align: middle;
}

.thlogin-form-links {
  text-align: center;
  width: 100%;
  font-size: 14px;
  margin: 0;
}
.thlogin-form-links a {
  color: #007cba;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}
.thlogin-form-links a:hover {
  color: #005ba0;
  text-decoration: underline;
}

.thlogin-messages {
  width: 100%;
  margin-bottom: 15px;
  text-align: center;
}
.thlogin-messages p.thlogin-message {
  padding: 10px 15px;
  border-radius: 4px;
  border: 1px solid;
  margin: 0;
}
.thlogin-messages p.thlogin-message--success {
  background-color: #e6ffe6;
  border-color: #4CAF50;
  color: #333;
}
.thlogin-messages p.thlogin-message--error {
  background-color: #ffe6e6;
  border-color: #F44336;
  color: #333;
}

.thlogin-shortcode-form-wrapper {
  max-width: 500px;
  margin: 30px auto;
  padding: 30px;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
}
.thlogin-shortcode-form-wrapper .thlogin-form {
  display: block;
}

@keyframes thlogin-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes thlogin-fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.thlogin-popup-modal.thlogin-slide-in-right {
  justify-content: flex-end;
}

.thlogin-popup-modal.thlogin-slide-in-left {
  justify-content: flex-start;
}

.thlogin-popup-modal.slide-in-left .thlogin-popup-form-container,
.thlogin-popup-modal.slide-in-right .thlogin-popup-form-container {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 320px;
  max-width: 80vw;
  height: 100vh;
  border-radius: 0;
  margin: 0;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
  padding: 20px 30px;
  background-color: #fff;
  z-index: 100000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.thlogin-popup-modal.slide-in-left .thlogin-popup-overlay,
.thlogin-popup-modal.slide-in-right .thlogin-popup-overlay {
  display: none;
}

@keyframes slideInFromLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideOutToLeft {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(-100%);
    opacity: 0;
  }
}
@keyframes slideInFromRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideOutToRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}
.thlogin-form-toggle {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

/* Main page mode layout */
#thlogin-popup-modal.thlogin-page {
  position: fixed;
  display: none !important;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  padding: 20px;
}

.thlogin-label-with-icon {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  /* overflow: hidden; */
  text-overflow: ellipsis;
}
.thlogin-label-with-icon .thlogin-label-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.thlogin-label-with-icon .thlogin-label-text {
  display: inline-block;
}

.thlogin-popup-close-button {
  position: absolute;
  top: 3%;
  right: 3%;
}

.thlogin-form-toggle {
  display: flex;
  gap: 10px;
  margin: 15px 0;
}

.thlogin-toggle-button {
  padding: 8px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.thlogin-slide-in-left .thlogin-popup-form-container {
  height: 100%;
  margin: 0;
}

.thlogin-slide-in-right .thlogin-popup-form-container {
  height: 100%;
  margin: 0;
}

.thlogin-page .thlogin-popup-form-container {
  height: 100%;
}

.thlogin-popup-modal .thlogin-popup-form-container {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.thlogin-popup-modal-effect .thlogin-popup-form-container {
  animation: thModalPopupOpen 0.3s ease-out forwards;
  opacity: 0;
  transform: scale(0.9);
}

@keyframes thModalPopupOpen {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* reCAPTCHA styles */
.g-recaptcha {
  margin: 15px 0;
  display: flex;
  justify-content: center;
}
.g-recaptcha iframe {
  max-width: 100%;
}

/* For v3 badge - optionally hide it */
.grecaptcha-badge {
  visibility: hidden;
}

.thlogin-layout-inline {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.thlogin-form-field--checkbox.thlogin-layout-inline {
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
}

.thlogin-form-field {
  margin: 0;
}

.thlogin-layout-inline .thlogin-label-with-icon .thlogin-label-icon {
  display: none;
}

.thlogin-form-field.thlogin-form-field--terms, .thlogin-form-field--checkbox {
  display: flex;
  align-items: center;
  /* justify-content: center; */
  gap: 10px;
}

.thlogin-shortcode-form-wrapper .thlogin-header-top-row,
.thlogin-shortcode-form-wrapper .thlogin-header-cancel-button,
.thlogin-shortcode-form-wrapper .thlogin-form-toggle,
.thlogin-shortcode-form-wrapper .thlogin-link-separator,
.thlogin-shortcode-form-wrapper .thlogin-link[data-th-popup-action=register] {
  display: none;
}

.thlogin-layout-floating .layout-placehold input {
  border: none !important;
  border-bottom: 1px solid black !important;
  outline: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.icon-activated-input-wrapper .floating-label {
  margin-left: 25px;
}

.thlogin-menu-item svg {
  width: 25px;
}

.thlogin-honeypot-field, .thlogin-form-field--honeypot {
  display: none;
}

.thlogin-form-field--terms a {
  text-decoration: none !important;
}

.thlogin-session-warning {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffeeba;
  padding: 15px 20px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 9999;
}

.thlogin-session-warning-inner button {
  background: #0073aa;
  color: #fff;
  border: none;
  padding: 6px 10px;
  border-radius: 3px;
  cursor: pointer;
}

.thlogin-form-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

#wp-auth-check-wrap #wp-auth-check {
  overflow: hidden;
  max-height: 500px;
  width: 500px;
}

/*# sourceMappingURL=public.css.map*/