/* [project]/src/app/login/login.module.css [app-client] (css) */
.login-module__WEZH7G__container {
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding-top: 4rem;
  display: flex;
}

.login-module__WEZH7G__card {
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  text-align: center;
  border-radius: 24px;
  width: 100%;
  max-width: 450px;
  padding: 3.5rem 2.5rem;
  animation: .8s ease-out login-module__WEZH7G__fadeIn;
  box-shadow: 0 0 40px #00000080;
}

@keyframes login-module__WEZH7G__fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.login-module__WEZH7G__googleBtn {
  border: 1px solid var(--card-border);
  color: #1a1a1f;
  cursor: pointer;
  background: #fff;
  border-radius: 9999px;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 1rem;
  font-weight: 600;
  transition: all .3s;
  display: flex;
}

.login-module__WEZH7G__googleBtn:hover {
  background: #f4f4f5;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px #ffffff1a;
}

.login-module__WEZH7G__credentialsForm {
  width: 100%;
  margin-bottom: 2rem;
}

.login-module__WEZH7G__inputGroup {
  margin-bottom: 1rem;
}

.login-module__WEZH7G__input {
  border: 1px solid var(--card-border);
  color: #fff;
  background: #ffffff0d;
  border-radius: 12px;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  transition: all .3s;
}

.login-module__WEZH7G__input:focus {
  border-color: var(--primary);
  background: #ff00660d;
  outline: none;
  box-shadow: 0 0 15px #f063;
}

.login-module__WEZH7G__divider {
  text-align: center;
  margin: 2rem 0;
  position: relative;
}

.login-module__WEZH7G__divider:before {
  content: "";
  background: var(--card-border);
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
}

.login-module__WEZH7G__divider span {
  color: #71717a;
  background: #0a0a0c;
  padding: 0 1rem;
  font-size: .875rem;
  position: relative;
}

.login-module__WEZH7G__form {
  width: 100%;
}

.login-module__WEZH7G__title {
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.login-module__WEZH7G__subtitle {
  color: #71717a;
  margin-bottom: 2rem;
}

.login-module__WEZH7G__footer {
  color: #a1a1aa;
  margin-top: 2rem;
  font-size: .875rem;
}

.login-module__WEZH7G__link {
  color: var(--primary);
  font-weight: bold;
  text-decoration: none;
}

.login-module__WEZH7G__link:hover {
  text-decoration: underline;
}

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