@import "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap";
/* [project]/app/globals.css [app-client] (css) */
:root {
  --bg-primary: #f8fafc;
  --bg-secondary: #fff;
  --text-primary: #0f172a;
  --text-secondary: #64748b;
  --accent: #2563eb;
  --accent-hover: #1d4ed8;
  --border: #e2e8f0;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  font-family: Inter, sans-serif;
  display: flex;
}

.login-container {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  width: 90%;
  max-width: 440px;
  padding: 3rem;
  animation: .4s ease-out forwards fadeUp;
  transform: translateY(10px);
  box-shadow: 0 10px 25px -5px #0000000d, 0 8px 10px -6px #00000003;
}

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

.brand {
  text-align: center;
  margin-bottom: 2rem;
}

.logo-icon {
  background: var(--accent);
  color: #fff;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 1.25rem;
  display: flex;
  box-shadow: 0 4px 10px #2563eb33;
}

.logo-icon svg {
  width: 26px;
  height: 26px;
}

h1 {
  color: var(--text-primary);
  letter-spacing: -.01em;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  font-weight: 700;
}

p.subtitle {
  color: var(--text-secondary);
  font-size: .95rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

label {
  color: var(--text-primary);
  margin-bottom: .5rem;
  font-size: .875rem;
  font-weight: 600;
  display: block;
}

input {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  width: 100%;
  color: var(--text-primary);
  border-radius: 8px;
  outline: none;
  padding: .875rem 1rem;
  font-family: inherit;
  font-size: .95rem;
  transition: all .2s;
}

input:focus {
  background: var(--bg-secondary);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px #2563eb26;
}

input::placeholder {
  color: #94a3b8;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 8px;
  width: 100%;
  margin-top: .75rem;
  padding: .875rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  transition: background .2s, transform .1s;
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-primary:active {
  transform: scale(.98);
}

.footer-text {
  text-align: center;
  color: var(--text-secondary);
  margin-top: 1.75rem;
  font-size: .875rem;
}

.footer-text a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.footer-text a:hover {
  text-decoration: underline;
}

/*# sourceMappingURL=app_globals_0jn8.0u.css.map*/