/* [project]/src/app/home.module.css [app-client] (css) */
.home-module__Hx0lNG__container {
  width: 100%;
  min-height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.home-module__Hx0lNG__background {
  z-index: 0;
  background: linear-gradient(135deg, #141e3099, #243b5580), #1a2332 url("/images/login-bg.webp") center / cover no-repeat;
  position: absolute;
  inset: 0;
}

.home-module__Hx0lNG__titleSection {
  z-index: 1;
  justify-content: center;
  align-items: center;
  width: 50%;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

.home-module__Hx0lNG__title {
  color: #fff;
  text-transform: lowercase;
  letter-spacing: .05em;
  text-shadow: 0 2px 20px #0000004d;
  font-size: 4rem;
  font-weight: 700;
}

.home-module__Hx0lNG__formSection {
  z-index: 1;
  justify-content: center;
  align-items: center;
  width: 50%;
  padding: 2rem;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

.home-module__Hx0lNG__formCard {
  background: #fff;
  border-radius: 8px;
  width: 100%;
  max-width: 380px;
  padding: 2.5rem;
  box-shadow: 0 4px 30px #00000026;
}

.home-module__Hx0lNG__formTitle {
  color: #1a1a1a;
  margin: 0 0 .5rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.home-module__Hx0lNG__formSubtitle {
  color: #6b7280;
  margin: 0 0 1.5rem;
  font-size: .875rem;
}

.home-module__Hx0lNG__link {
  color: #2563eb;
  text-decoration: none;
}

.home-module__Hx0lNG__link:hover {
  text-decoration: underline;
}

.home-module__Hx0lNG__form {
  flex-direction: column;
  gap: 1.25rem;
  display: flex;
}

.home-module__Hx0lNG__inputGroup {
  flex-direction: column;
  gap: .5rem;
  display: flex;
}

.home-module__Hx0lNG__labelRow {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.home-module__Hx0lNG__label {
  color: #374151;
  font-size: .75rem;
  font-weight: 500;
}

.home-module__Hx0lNG__forgotLink {
  color: #2563eb;
  margin-top: .25rem;
  font-size: .75rem;
  text-decoration: none;
  display: inline-block;
}

.home-module__Hx0lNG__forgotLink:hover {
  text-decoration: underline;
}

.home-module__Hx0lNG__input {
  color: #1a1a1a;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  width: 100%;
  padding: .75rem 1rem;
  font-size: .875rem;
  transition: border-color .2s, box-shadow .2s;
}

.home-module__Hx0lNG__input:focus {
  border-color: #2563eb;
  outline: none;
  box-shadow: 0 0 0 3px #2563eb1a;
}

.home-module__Hx0lNG__input:disabled {
  cursor: not-allowed;
  background: #f3f4f6;
}

.home-module__Hx0lNG__input::placeholder {
  color: #9ca3af;
}

.home-module__Hx0lNG__passwordWrapper {
  align-items: center;
  display: flex;
  position: relative;
}

.home-module__Hx0lNG__passwordWrapper .home-module__Hx0lNG__input {
  padding-right: 2.5rem;
}

.home-module__Hx0lNG__eyeButton {
  cursor: pointer;
  color: #9ca3af;
  background: none;
  border: none;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  transition: color .2s;
  display: flex;
  position: absolute;
  right: .5rem;
}

.home-module__Hx0lNG__eyeButton:hover {
  color: #6b7280;
}

.home-module__Hx0lNG__eyeButton svg {
  width: 1.125rem;
  height: 1.125rem;
}

.home-module__Hx0lNG__formSubtitleDisabled {
  color: #9ca3af;
  margin: 0 0 1.5rem;
  font-size: .8rem;
  font-style: italic;
}

.home-module__Hx0lNG__error {
  color: #dc2626;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 4px;
  padding: .75rem 1rem;
  font-size: .875rem;
}

.home-module__Hx0lNG__submitButton {
  color: #fff;
  cursor: pointer;
  background: #2563eb;
  border: none;
  border-radius: 20px;
  width: 100%;
  padding: .75rem 1rem;
  font-size: .875rem;
  font-weight: 600;
  transition: background-color .2s;
}

.home-module__Hx0lNG__submitButton:hover:not(:disabled) {
  background: #1d4ed8;
}

.home-module__Hx0lNG__submitButton:disabled {
  cursor: not-allowed;
  background: #93c5fd;
}

.home-module__Hx0lNG__separator {
  color: #9ca3af;
  align-items: center;
  margin: 1.5rem 0;
  font-size: .875rem;
  display: flex;
}

.home-module__Hx0lNG__separator:before, .home-module__Hx0lNG__separator:after {
  content: "";
  background: #e5e7eb;
  flex: 1;
  height: 1px;
}

.home-module__Hx0lNG__separator span {
  padding: 0 1rem;
}

.home-module__Hx0lNG__oauthButtons {
  flex-direction: column;
  gap: .75rem;
  display: flex;
}

.home-module__Hx0lNG__oauthButton {
  color: #374151;
  cursor: pointer;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  gap: .75rem;
  width: 100%;
  padding: .75rem 1rem;
  font-size: .875rem;
  font-weight: 500;
  transition: background-color .2s, border-color .2s;
  display: flex;
}

.home-module__Hx0lNG__oauthButton:hover:not(:disabled) {
  background: #f9fafb;
  border-color: #9ca3af;
}

.home-module__Hx0lNG__oauthButton:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.home-module__Hx0lNG__oauthIcon {
  width: 1.25rem;
  height: 1.25rem;
}

.home-module__Hx0lNG__helpText {
  text-align: center;
  margin-top: 1.5rem;
  font-size: .75rem;
}

.home-module__Hx0lNG__helpLink {
  color: #2563eb;
  text-decoration: none;
}

.home-module__Hx0lNG__helpLink:hover {
  text-decoration: underline;
}

.home-module__Hx0lNG__companyLogo {
  z-index: 1;
  align-items: center;
  gap: .5rem;
  display: flex;
  position: absolute;
  bottom: 2rem;
  left: 2rem;
}

.home-module__Hx0lNG__logoIcon {
  color: #1a1a1a;
  background: #fff;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
}

.home-module__Hx0lNG__logoText {
  color: #fff;
  letter-spacing: .05em;
  font-size: .875rem;
  font-weight: 600;
}

.home-module__Hx0lNG__loaderWrapper {
  z-index: 10;
  color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0;
}

.home-module__Hx0lNG__loaderWrapper p {
  color: #fff;
}

.home-module__Hx0lNG__loader {
  color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  height: 100vh;
  display: flex;
}

.home-module__Hx0lNG__spinner {
  border: 3px solid #ffffff4d;
  border-top-color: #fff;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  animation: .8s linear infinite home-module__Hx0lNG__spin;
}

@keyframes home-module__Hx0lNG__spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 900px) {
  .home-module__Hx0lNG__titleSection {
    width: 100%;
    height: auto;
    padding: 3rem 2rem 2rem;
    position: relative;
  }

  .home-module__Hx0lNG__title {
    font-size: 2.5rem;
  }

  .home-module__Hx0lNG__formSection {
    width: 100%;
    height: auto;
    padding: 0 2rem 3rem;
    position: relative;
  }

  .home-module__Hx0lNG__container {
    flex-direction: column;
  }

  .home-module__Hx0lNG__companyLogo {
    justify-content: center;
    padding: 2rem;
    position: relative;
    bottom: auto;
    left: auto;
  }

  .home-module__Hx0lNG__logoIcon {
    color: #fff;
    background: #fff3;
  }
}

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