/*!*************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[3]!./app/globals.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************/
:root {
  font-family: "Inter", system-ui, sans-serif;
  color: #0f172a;
  background: #f8fafc;
}

body {
  margin: 0;
  padding: 0;
}

main {
  padding: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.card {
  background: white;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: none;
  background: #2563eb;
  color: white;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: #e2e8f0;
  color: #0f172a;
}

.tag {
  display: inline-flex;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  font-size: 0.75rem;
  background: #e2e8f0;
  color: #1e293b;
}

.grid {
  display: grid;
  grid-gap: 1rem;
  gap: 1rem;
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.step-list {
  display: grid;
  grid-gap: 0.75rem;
  gap: 0.75rem;
}

.thumb-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.thumb {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid #e2e8f0;
}

input, select, textarea {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
  border: 1px solid #cbd5f5;
  margin-top: 0.25rem;
  box-sizing: border-box;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

.progress {
  height: 8px;
  background: #e2e8f0;
  border-radius: 999px;
  overflow: hidden;
}

.progress > div {
  height: 100%;
  background: #22c55e;
}

.alert {
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: #fff7ed;
  border: 1px solid #fdba74;
  color: #9a3412;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: white;
  border-bottom: 1px solid #e2e8f0;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav a {
  color: #1e293b;
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 600px) {
  main {
    padding: 1rem;
  }
}

