/* [project]/app/auth/login/login.css [app-client] (css) */
:root {
  --brand-gradient: linear-gradient(to right bottom, #4241bf, #3935a7, #2f2a90, #251f7a, #1b1464);
  --brand-600: #6d28d9;
  --brand-50: #f3e8ff;
  --ink: #0f172a;
  --muted: #5b6572;
  --line: #e7e9f0;
  --card: #fff;
  --radius: 14px;
}

.login-page {
  background: #eef4ff;
  place-items: center;
  min-height: 100vh;
  display: grid;
}

.login-card {
  background: #fff;
  border-radius: 14px;
  flex-direction: column;
  align-items: center;
  width: 360px;
  padding: 28px 26px 30px;
  display: flex;
  box-shadow: 0 25px 60px #0000001f;
}

.login-logo {
  object-fit: contain;
  margin-bottom: 18px;
}

.login-card h2 {
  color: #1f2937;
  margin-bottom: 18px;
  font-size: 20px;
  font-weight: 700;
}

.login-card input {
  background: #eef4ff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  width: 100%;
  height: 44px;
  margin-bottom: 14px;
  padding: 0 14px;
  font-size: 14px;
}

.login-card input:focus {
  background: #fff;
  border-color: #6d28d9;
  outline: none;
}

.login-error {
  color: #991b1b;
  text-align: center;
  background: #fee2e2;
  border-radius: 8px;
  width: 100%;
  margin-bottom: 14px;
  padding: 10px;
  font-size: 13px;
}

.updatebtn {
  color: #fff;
  cursor: pointer;
  background: var(--brand-gradient);
  border: none;
  border-radius: 12px;
  width: 100%;
  height: 44px;
  font-weight: 700;
  transition: transform 80ms, box-shadow 80ms;
}

.updatebtn:hover {
  box-shadow: 0 10px 24px #4f46e559;
}

.updatebtn:active {
  transform: translateY(1px);
}

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