@import "https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap";
/* [project]/app/globals.css [app-client] (css) */
:root {
  --yellow: #fdd000;
  --yellow-dark: #e7bd00;
  --ink: #111;
  --muted: #6b7280;
  --line: #e5e7eb;
  --paper: #fff;
  --soft: #fff9dc;
  --danger: #dc2626;
  --success: #15803d;
  --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  color: var(--ink);
  font-family: var(--font-sans);
  letter-spacing: 0;
  text-rendering: optimizelegibility;
  -webkit-font-smoothing: antialiased;
  background: #f6f6f6;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

button, input, select, textarea {
  font: inherit;
  letter-spacing: 0;
}

.topbar {
  z-index: 10;
  background: var(--ink);
  color: #fff;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 24px;
  display: flex;
  position: sticky;
  top: 0;
  box-shadow: 0 2px 12px #0000002e;
}

.brand {
  font-size: 17px;
  font-weight: 800;
}

.topbar nav {
  align-items: center;
  gap: 10px;
  display: flex;
}

.container {
  width: min(1180px, 100% - 28px);
  margin: 26px auto;
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px #1111110f;
}

.panel {
  padding: 24px;
}

.login-wrap {
  background: linear-gradient(180deg, var(--yellow) 0 38%, #f6f6f6 38% 100%);
  place-items: center;
  min-height: 100vh;
  padding: 20px;
  display: grid;
}

.boot-screen {
  background: #f6f6f6;
  place-items: center;
  min-height: 100vh;
  padding: 20px;
  display: grid;
}

.boot-panel {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 8px;
  align-items: center;
  gap: 12px;
  min-width: 240px;
  padding: 16px 18px;
  display: inline-flex;
  box-shadow: 0 8px 24px #1111110f;
}

.boot-mark {
  border: 3px solid #e5e7eb;
  border-top-color: var(--yellow-dark);
  border-radius: 999px;
  width: 26px;
  height: 26px;
  animation: .72s linear infinite boot-spin;
}

.boot-title {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.boot-text {
  color: var(--muted);
  margin-top: 2px;
  font-size: 12px;
  line-height: 1.35;
}

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

.login-box {
  width: min(460px, 100%);
  padding: 28px;
}

h1, h2, h3 {
  letter-spacing: 0;
  margin: 0 0 16px;
  line-height: 1.18;
}

h1 {
  font-size: 24px;
  font-weight: 800;
}

h2 {
  font-size: 20px;
  font-weight: 800;
}

h3 {
  font-size: 16px;
  font-weight: 700;
}

form {
  display: block;
}

fieldset {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  margin: 0 0 18px;
  padding: 18px;
}

legend {
  color: var(--ink);
  padding: 0 8px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}

label {
  color: #374151;
  margin: 12px 0 6px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  display: block;
}

input, select, textarea {
  width: 100%;
  min-height: 40px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 13px;
  line-height: 1.5;
}

textarea {
  resize: vertical;
  min-height: 88px;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--yellow-dark);
  outline: 3px solid #fdd00059;
}

.grid-2, .grid-3 {
  gap: 14px;
  display: grid;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.btn-row {
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  display: flex;
}

button, .button {
  background: var(--yellow);
  min-height: 38px;
  color: var(--ink);
  cursor: pointer;
  border: 0;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

button:hover, .button:hover {
  background: var(--yellow-dark);
}

button:disabled {
  cursor: not-allowed;
  opacity: .65;
}

.btn-secondary {
  background: #e5e7eb;
}

.btn-secondary:hover {
  background: #d1d5db;
}

.btn-danger {
  background: var(--danger);
  color: #fff;
}

.btn-danger:hover {
  background: #b91c1c;
}

.btn-sm {
  min-height: 30px;
  padding: 6px 10px;
  font-size: 12px;
}

.hint {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.badge {
  background: var(--yellow);
  min-height: 28px;
  color: var(--ink);
  border-radius: 999px;
  align-items: center;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
}

.alert {
  border-radius: 8px;
  margin-bottom: 16px;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 700;
}

.alert-success {
  color: var(--success);
  background: #dcfce7;
}

.alert-error {
  color: #991b1b;
  background: #fee2e2;
}

.payment-block {
  background: var(--soft);
  margin-top: 10px;
  padding: 16px;
}

.payment-add-row {
  margin-top: 12px;
}

.payment-head {
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  display: flex;
}

.radio-row {
  flex-wrap: wrap;
  gap: 12px;
  margin: 12px 0;
  display: flex;
}

.radio-row label {
  align-items: center;
  gap: 7px;
  margin: 0;
  font-weight: 700;
  display: inline-flex;
}

.radio-row input {
  width: auto;
  min-height: 0;
}

.summary {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
  display: grid;
}

.summary-item {
  border: 1px solid var(--line);
  background: #fafafa;
  border-radius: 8px;
  padding: 14px;
}

.summary-item b {
  margin-top: 4px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
  display: block;
}

@media (max-width: 820px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
    position: static;
  }

  .grid-2, .grid-3, .summary {
    grid-template-columns: 1fr;
  }

  .panel {
    padding: 18px;
  }
}

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