@import "https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap";
/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --font-family: "Outfit", sans-serif;
  --bg-color: #0d0f1a;
  --bg-gradient: linear-gradient(135deg, #0d0f1a 0%, #1a1e36 100%);
  --card-bg: #ffffff08;
  --card-border: #ffffff14;
  --text-primary: #fff;
  --text-secondary: #94a3b8;
  --primary-color: #6366f1;
  --primary-hover: #4f46e5;
  --primary-gradient: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
  --success-color: #10b981;
  --danger-color: #ef4444;
  --warning-color: #f59e0b;
  --border-radius: 12px;
  --transition: all .3s cubic-bezier(.4, 0, .2, 1);
  --shadow-sm: 0 4px 6px -1px #0000001a, 0 2px 4px -1px #0000000f;
  --shadow-md: 0 10px 15px -3px #0000001a, 0 4px 6px -2px #0000000d;
  --shadow-glow: 0 0 20px #6366f14d;
}

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

body {
  font-family: var(--font-family);
  background: var(--bg-color);
  background-image: var(--bg-gradient);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  background-attachment: fixed;
  min-height: 100vh;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  transition: var(--transition);
  background: none;
  border: none;
  font-family: inherit;
}

input, select, textarea {
  transition: var(--transition);
  font-family: inherit;
}

.glass-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  padding: 24px;
}

.btn-primary {
  background: var(--primary-gradient);
  color: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-weight: 500;
  display: inline-flex;
}

.btn-primary:hover:not(:disabled) {
  box-shadow: var(--shadow-glow);
  transform: translateY(-1px);
}

.btn-primary:active:not(:disabled) {
  transform: translateY(1px);
}

.btn-primary:disabled {
  opacity: .7;
  cursor: not-allowed;
}

.input-field {
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius);
  width: 100%;
  color: var(--text-primary);
  background: #0003;
  outline: none;
  padding: 12px 16px;
}

.input-field:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px #6366f133;
}

.input-field::placeholder {
  color: var(--text-secondary);
}

.spinner {
  border: 2px solid #ffffff4d;
  border-top-color: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: .8s linear infinite spin;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.min-h-screen {
  min-height: 100vh;
}

.flex {
  display: flex;
}

.flex-1 {
  flex: 1;
}

.flex-col {
  flex-direction: column;
  display: flex;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-2 {
  gap: 8px;
}

.gap-3 {
  gap: 12px;
}

.gap-4 {
  gap: 16px;
}

.gap-6 {
  gap: 24px;
}

.gap-8 {
  gap: 32px;
}

.mt-1 {
  margin-top: 4px;
}

.mt-2 {
  margin-top: 8px;
}

.mt-4 {
  margin-top: 16px;
}

.mt-6 {
  margin-top: 24px;
}

.mt-8 {
  margin-top: 32px;
}

.mb-1 {
  margin-bottom: 4px;
}

.mb-2 {
  margin-bottom: 8px;
}

.mb-4 {
  margin-bottom: 16px;
}

.mb-6 {
  margin-bottom: 24px;
}

.mb-8 {
  margin-bottom: 32px;
}

.mb-10 {
  margin-bottom: 40px;
}

.ml-2 {
  margin-left: 8px;
}

.ml-4 {
  margin-left: 16px;
}

.p-2 {
  padding: 8px;
}

.p-3 {
  padding: 12px;
}

.p-4 {
  padding: 16px;
}

.p-5 {
  padding: 20px;
}

.p-6 {
  padding: 24px;
}

.p-8 {
  padding: 32px;
}

.px-2 {
  padding-left: 8px;
  padding-right: 8px;
}

.py-2 {
  padding-top: 8px;
  padding-bottom: 8px;
}

.px-4 {
  padding-left: 16px;
  padding-right: 16px;
}

.py-4 {
  padding-top: 16px;
  padding-bottom: 16px;
}

.px-6 {
  padding-left: 24px;
  padding-right: 24px;
}

.py-6 {
  padding-top: 24px;
  padding-bottom: 24px;
}

.w-full {
  width: 100%;
}

.max-w-sm {
  max-width: 384px;
}

.max-w-6xl {
  max-width: 1152px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.text-center {
  text-align: center;
}

.text-sm {
  font-size: .875rem;
}

.text-xs {
  font-size: .75rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-secondary {
  color: var(--text-secondary);
}

.text-danger {
  color: var(--danger-color);
}

.text-success {
  color: var(--success-color);
}

.font-medium {
  font-weight: 500;
}

.font-bold {
  font-weight: 700;
}

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