/* [project]/src/app/features/auth/Login/login.module.css [app-client] (css) */
.login-module__lGqzpa__loginContainer {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: #fffffff2;
  border-radius: 20px;
  width: 100%;
  max-width: 420px;
  height: auto;
  padding: 20px;
  animation: .5s ease-out login-module__lGqzpa__slideIn;
  box-shadow: 0 20px 60px #0000004d;
}

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

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

.login-module__lGqzpa__logo {
  text-align: center;
  margin-bottom: 30px;
}

.login-module__lGqzpa__logo h1 {
  background: #bb3d4b;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 32px;
  font-weight: 700;
}

.login-module__lGqzpa__logo p {
  color: #666;
  margin-top: 5px;
  font-size: 14px;
}

.login-module__lGqzpa__formGroup {
  margin-bottom: 25px;
  position: relative;
}

.login-module__lGqzpa__formGroup label {
  color: #333;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  display: block;
}

.login-module__lGqzpa__formGroup input {
  background: #f8f9fa;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  width: 100%;
  padding: 14px 18px;
  font-size: 15px;
  transition: all .3s;
}

.login-module__lGqzpa__formGroup input:focus {
  background: #fff;
  border-color: #667eea;
  outline: none;
  box-shadow: 0 0 0 4px #667eea1a;
}

.login-module__lGqzpa__formGroup input:hover {
  border-color: #667eea;
}

.login-module__lGqzpa__forgotPassword {
  text-align: right;
  margin-top: -15px;
  margin-bottom: 25px;
}

.login-module__lGqzpa__forgotPassword a {
  color: #667eea;
  font-size: 14px;
  text-decoration: none;
  transition: color .3s;
}

.login-module__lGqzpa__forgotPassword a:hover {
  color: #764ba2;
}

.login-module__lGqzpa__loginBtn {
  color: #fff;
  cursor: pointer;
  background: #bb3d4b;
  border: none;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 15px;
  font-size: 16px;
  font-weight: 600;
  transition: all .3s;
  display: flex;
  box-shadow: 0 4px 15px #667eea66;
}

.login-module__lGqzpa__loginBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px #667eea99;
}

.login-module__lGqzpa__loginBtn:active {
  transform: translateY(0);
}

.login-module__lGqzpa__divider {
  text-align: center;
  margin: 30px 0;
  position: relative;
}

.login-module__lGqzpa__divider:before {
  content: "";
  background: #e0e0e0;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
}

.login-module__lGqzpa__divider span {
  color: #999;
  z-index: 1;
  background: #fffffff2;
  padding: 0 15px;
  font-size: 14px;
  position: relative;
}

.login-module__lGqzpa__socialLogin {
  gap: 15px;
  margin-bottom: 25px;
  display: flex;
}

.login-module__lGqzpa__socialBtn {
  cursor: pointer;
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 12px;
  font-size: 14px;
  font-weight: 500;
  transition: all .3s;
  display: flex;
}

.login-module__lGqzpa__socialBtn:hover {
  border-color: #667eea;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px #0000001a;
}

.login-module__lGqzpa__signupLink {
  text-align: center;
  color: #666;
  margin-top: 25px;
  font-size: 14px;
}

.login-module__lGqzpa__signupLink a {
  color: #bb3d4b;
  font-weight: 600;
  text-decoration: none;
  transition: color .3s;
}

.login-module__lGqzpa__checkboxGroup {
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.login-module__lGqzpa__checkboxGroup input[type="checkbox"] {
  cursor: pointer;
  width: 18px;
  height: 18px;
  margin-right: 8px;
}

.login-module__lGqzpa__checkboxGroup label {
  color: #666;
  cursor: pointer;
  font-size: 14px;
}

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