/* [project]/app/login/login.module.css [app-client] (css) */
@keyframes login-module__Si-P0q__fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes login-module__Si-P0q__spinIcon {
  from {
    transform: rotate(0);
  }

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

.login-module__Si-P0q__page {
  min-height: 100vh;
  font-family: var(--font-body), Inter, sans-serif;
  background: url("/login-bg.png") center / cover no-repeat;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.login-module__Si-P0q__svgGeometry {
  pointer-events: none;
  width: 200px;
  height: 200px;
  position: absolute;
  top: 0;
  left: 0;
}

.login-module__Si-P0q__cardWrapper {
  width: 100%;
  max-width: 440px;
  position: relative;
}

.login-module__Si-P0q__svgConstellation {
  pointer-events: none;
  width: 220px;
  height: 320px;
  position: absolute;
  top: 60%;
  left: calc(100% + 6px);
  transform: translateY(-50%);
}

.login-module__Si-P0q__card {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 440px;
  padding: 48px 44px 40px;
  animation: .45s both login-module__Si-P0q__fadeUp;
  box-shadow: 0 1px 3px #0000000f, 0 8px 32px #00000017;
}

.login-module__Si-P0q__cardHeader {
  text-align: center;
  margin-bottom: 36px;
}

.login-module__Si-P0q__cardTitle {
  font-family: var(--font-heading), "DM Sans", sans-serif;
  letter-spacing: -.03em;
  color: #0f172a;
  margin-bottom: 6px;
  font-size: 1.75rem;
  font-weight: 800;
}

.login-module__Si-P0q__cardSubtitle {
  color: #64748b;
  font-size: .9rem;
}

.login-module__Si-P0q__successBanner {
  color: #16a34a;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 10px 14px;
  font-size: .85rem;
}

.login-module__Si-P0q__errorBanner {
  color: #dc2626;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 10px 14px;
  font-size: .85rem;
}

.login-module__Si-P0q__fieldGroup {
  margin-bottom: 18px;
}

.login-module__Si-P0q__label {
  color: #475569;
  font-size: .8rem;
  font-weight: 600;
  font-family: var(--font-heading), "DM Sans", sans-serif;
  margin-bottom: 7px;
  display: block;
}

.login-module__Si-P0q__input {
  color: #0f172a;
  width: 100%;
  font-size: .93rem;
  font-family: var(--font-body), Inter, sans-serif;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  outline: none;
  padding: 12px 14px;
  transition: border-color .15s, box-shadow .15s;
}

.login-module__Si-P0q__input::placeholder {
  color: #cbd5e1;
}

.login-module__Si-P0q__input:focus {
  border-color: #3b5bdb;
  box-shadow: 0 0 0 3px #3b5bdb1a;
}

.login-module__Si-P0q__input:disabled {
  color: #94a3b8;
  cursor: not-allowed;
  background: #f8fafc;
}

.login-module__Si-P0q__formRow {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  display: flex;
}

.login-module__Si-P0q__rememberLabel {
  cursor: pointer;
  color: #475569;
  align-items: center;
  gap: 8px;
  font-size: .83rem;
  display: flex;
}

.login-module__Si-P0q__rememberCheckbox {
  accent-color: #3b5bdb;
  cursor: pointer;
  width: 15px;
  height: 15px;
}

.login-module__Si-P0q__forgotLink {
  color: #3b5bdb;
  font-size: .83rem;
  text-decoration: none;
  transition: color .15s;
}

.login-module__Si-P0q__forgotLink:hover {
  color: #2f4ec4;
  text-decoration: underline;
}

.login-module__Si-P0q__btnSubmit {
  color: #fff;
  width: 100%;
  font-family: var(--font-heading), "DM Sans", sans-serif;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
  background: #3b5bdb;
  border: none;
  border-radius: 8px;
  margin-bottom: 16px;
  padding: 13px;
  font-size: .88rem;
  font-weight: 700;
  transition: background .15s, box-shadow .15s, transform .1s;
}

.login-module__Si-P0q__btnSubmit:hover:not(:disabled) {
  background: #2f4ec4;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px #3b5bdb4d;
}

.login-module__Si-P0q__btnSubmit:active:not(:disabled) {
  transform: translateY(0);
}

.login-module__Si-P0q__btnSubmit:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.login-module__Si-P0q__btnSpinner {
  justify-content: center;
  align-items: center;
  gap: 8px;
  display: flex;
}

.login-module__Si-P0q__btnSpinner svg {
  width: 16px;
  height: 16px;
  animation: .9s linear infinite login-module__Si-P0q__spinIcon;
}

.login-module__Si-P0q__divider {
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  display: flex;
}

.login-module__Si-P0q__dividerLine {
  background: #e2e8f0;
  flex: 1;
  height: 1px;
}

.login-module__Si-P0q__dividerText {
  color: #94a3b8;
  white-space: nowrap;
  font-size: .78rem;
}

.login-module__Si-P0q__btnRegister {
  color: #475569;
  width: 100%;
  font-family: var(--font-heading), "DM Sans", sans-serif;
  background: none;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 12px;
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color .15s, color .15s, background .15s;
  display: flex;
}

.login-module__Si-P0q__btnRegister:hover {
  color: #1e293b;
  background: #f8fafc;
  border-color: #cbd5e1;
}

.login-module__Si-P0q__backLink {
  text-align: center;
  color: #94a3b8;
  margin-top: 20px;
  font-size: .82rem;
  text-decoration: none;
  transition: color .15s;
  display: block;
}

.login-module__Si-P0q__backLink:hover {
  color: #475569;
}

@media (max-width: 480px) {
  .login-module__Si-P0q__card {
    border-radius: 12px;
    padding: 32px 20px 28px;
  }
}

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