/* [project]/app/sign-in/login.module.css [app-client] (css) */
.login-module__X3eXSa__container {
  background-color: #f7f8fa;
  width: 100%;
  min-height: 100vh;
  display: flex;
}

.login-module__X3eXSa__leftPanel {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  display: flex;
  position: relative;
}

.login-module__X3eXSa__logoWrapper {
  position: absolute;
  top: 2rem;
  left: 2rem;
}

.login-module__X3eXSa__rightPanel {
  background-color: #e8edff;
  flex: 1;
  display: none;
  position: relative;
  overflow: hidden;
}

.login-module__X3eXSa__rightPanel:before {
  content: "";
  background-color: var(--primary-color);
  border-bottom-left-radius: 100%;
  width: 150%;
  height: 120%;
  position: absolute;
  top: -10%;
  left: -25%;
}

@media (min-width: 992px) {
  .login-module__X3eXSa__leftPanel {
    flex-basis: 50%;
    max-width: 50%;
  }

  .login-module__X3eXSa__rightPanel {
    flex-basis: 50%;
    max-width: 50%;
    display: block;
  }
}

.login-module__X3eXSa__loginCard {
  text-align: center;
  background: #fff;
  border-radius: 24px;
  width: 100%;
  max-width: 480px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.login-module__X3eXSa__loginCard h1 {
  color: #1a1a1a;
  margin-bottom: .5rem;
  font-size: 2rem;
  font-weight: 700;
}

.login-module__X3eXSa__subtitle {
  color: #6c757d;
  margin-bottom: 2.5rem;
}

.login-module__X3eXSa__actions {
  height: 1.5rem;
}

.login-module__X3eXSa__error {
  color: #e53e3e;
  text-align: center;
  background-color: #fed7d7;
  border: 1px solid #f56565;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  padding: .75rem;
  font-size: .875rem;
}

.login-module__X3eXSa__loadingContainer {
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  display: flex;
}

/* [project]/components/ui/Input/Input.module.css [app-client] (css) */
.Input-module__Nmke_G__fieldset {
  border: 1px solid #d1d5db;
  border-radius: 9999px;
  margin: 0 0 1.5rem;
  padding: 0 1rem;
  transition: border-color .2s, background-color .2s;
  position: relative;
}

.Input-module__Nmke_G__fieldset:focus-within {
  border-color: var(--link-color);
  box-shadow: 0 0 0 2px rgba(74, 144, 226, .2);
}

.Input-module__Nmke_G__legend {
  color: var(--label-color);
  margin-left: .75rem;
  padding: 0 .4rem;
  font-size: .875rem;
  font-weight: 500;
}

.Input-module__Nmke_G__legend span {
  padding: 0;
  display: inline-block;
}

.Input-module__Nmke_G__inputWrapper {
  align-items: center;
  gap: .75rem;
  display: flex;
}

.Input-module__Nmke_G__input {
  width: 100%;
  height: 48px;
  color: var(--text-color);
  background-color: rgba(0, 0, 0, 0);
  border: none;
  outline: none;
  padding: 0;
  font-size: 1rem;
}

.Input-module__Nmke_G__input::placeholder {
  color: #9ca3af;
}

.Input-module__Nmke_G__icon {
  color: #6b7280;
  align-items: center;
  display: flex;
}

.Input-module__Nmke_G__rightIcon {
  cursor: pointer;
}

.Input-module__Nmke_G__fieldset:has(.Input-module__Nmke_G__input:disabled) {
  background-color: var(--disabled-input-background-color);
  border-color: #e5e7eb;
}

.Input-module__Nmke_G__input:disabled {
  color: var(--disabled-input-color);
}

.Input-module__Nmke_G__fieldset:has(.Input-module__Nmke_G__input:disabled) .Input-module__Nmke_G__icon {
  color: #9ca3af;
}

/* [project]/components/ui/Button/Button.module.css [app-client] (css) */
.Button-module__LCT47W__button {
  cursor: pointer;
  border: none;
  border-radius: 9999px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 54px;
  padding: 0 2rem;
  font-size: 1rem;
  font-weight: 700;
  transition: background-color .2s ease-in-out, border-color .2s, color .2s;
  display: flex;
}

.Button-module__LCT47W__button:disabled {
  color: #fff;
  cursor: not-allowed;
  background-color: #adb5bd;
  border-color: #adb5bd;
}

.Button-module__LCT47W__primary {
  background-color: var(--button-color);
  color: var(--button-text-color);
}

.Button-module__LCT47W__primary:hover:not(:disabled) {
  background-color: var(--button-hover-color);
}

.Button-module__LCT47W__secondary {
  color: var(--text-color);
  border: 1px solid var(--border-color);
  background-color: #fff;
}

.Button-module__LCT47W__secondary:hover:not(:disabled) {
  background-color: #f8f9fa;
  border-color: #ced4da;
}

/* [project]/components/ui/ProgressCircle/ProgressCircle.module.css [app-client] (css) */
.ProgressCircle-module__HTKcnG__wrapper {
  display: inline-block;
  position: relative;
}

.ProgressCircle-module__HTKcnG__svg {
  transform: rotate(-90deg);
}

.ProgressCircle-module__HTKcnG__backgroundCircle {
  fill: none;
  stroke: #e9ecef;
}

.ProgressCircle-module__HTKcnG__progressCircle {
  fill: none;
  stroke-linecap: round;
  animation: ProgressCircle-module__HTKcnG__spin var(--animation-duration, 1.5s) linear infinite;
}

@keyframes ProgressCircle-module__HTKcnG__spin {
  100% {
    transform: rotate(360deg);
  }
}

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