/* [project]/src/shared/Loader/index.scss.css [app-client] (css) */
.loader {
  box-sizing: border-box;
  border: 3px solid #007735;
  border-bottom-color: #0000;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: 1s linear infinite rotation;
  display: inline-block;
}

@keyframes rotation {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* [project]/src/components/ThemeSwitcher/ThemeSwitcher.module.css [app-client] (css) */
.ThemeSwitcher-module__b37ZMW__theme-switcher {
  cursor: pointer;
  background-position: center;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  display: inline-block;
}

[data-theme="light"] .ThemeSwitcher-module__b37ZMW__theme-switcher {
  filter: brightness(0) saturate() invert(24%) sepia(8%) saturate(446%) hue-rotate(169deg) brightness(95%) contrast(87%);
  background-image: url("/images/icons/theme-moon.svg");
}

[data-theme="dark"] .ThemeSwitcher-module__b37ZMW__theme-switcher {
  filter: brightness(0) saturate() invert(36%) sepia(42%) saturate(1154%) hue-rotate(341deg) brightness(95%) contrast(87%);
  background-image: url("/images/icons/theme-sun.svg");
}

/* [project]/node_modules/react-loading-skeleton/dist/skeleton.css [app-client] (css) */
@keyframes react-loading-skeleton {
  100% {
    transform: translateX(100%);
  }
}

.react-loading-skeleton {
  --base-color: #ebebeb;
  --highlight-color: #f5f5f5;
  --animation-duration: 1.5s;
  --animation-direction: normal;
  --pseudo-element-display: block;
  background-color: var(--base-color);
  -webkit-user-select: none;
  user-select: none;
  border-radius: .25rem;
  width: 100%;
  line-height: 1;
  display: inline-flex;
  position: relative;
  overflow: hidden;
}

.react-loading-skeleton:after {
  content: " ";
  display: var(--pseudo-element-display);
  background-repeat: no-repeat;
  background-image: var(--custom-highlight-background, linear-gradient(90deg,
      var(--base-color) 0%,
      var(--highlight-color) 50%,
      var(--base-color) 100%));
  height: 100%;
  animation-name: react-loading-skeleton;
  animation-direction: var(--animation-direction);
  animation-duration: var(--animation-duration);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: translateX(-100%);
}

@media (prefers-reduced-motion) {
  .react-loading-skeleton {
    --pseudo-element-display: none;
  }
}

/* [project]/src/app/[locale]/(auth)/login/custom-style.css [app-client] (css) */
.sso-divider {
  text-align: center;
  margin-top: 10px;
  position: relative;
}

.sso-divider:before {
  content: "";
  background-color: var(--border);
  z-index: 1;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
}

.sso-divider-text {
  background-color: var(--bg-elevated);
  color: var(--text-secondary);
  z-index: 2;
  padding: 0 16px;
  font-size: 14px;
  position: relative;
}

.sso-login-section {
  margin-top: 16px;
}

.sso-login-button {
  border: 1px solid var(--border-strong);
  background-color: var(--bg-elevated);
  width: 100%;
  height: 56px;
  color: var(--text-primary);
  cursor: pointer;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  transition: all .2s;
  display: flex;
}

.sso-login-button:hover {
  background-color: var(--surface-2);
  border-color: var(--border-strong);
}

.sso-login-button:focus {
  ring: 2px;
  ring-color: #3b82f6;
  ring-offset: 2px;
  outline: none;
}

.sso-login-button:active {
  background-color: var(--surface-2);
}

.sso-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

[dir="rtl"] .sso-divider-text {
  padding: 0 16px;
}

.sso-spinner svg {
  animation: 1s linear infinite spin;
}

.sso-spinner {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

@keyframes spin {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

/*# sourceMappingURL=_0u8njef._.css.map*/