/*!*************************************************************************************************************************************************************************************************************************************************************!*\
  !*** 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 {
  --pink: #e58ba0;
  --pink-dark: #c96b83;
  --pink-light: #fdf1f3;
  --cream: #fffaf7;
  --ink: #3a2c30;
  --muted: #8a7478;
}

* {
  box-sizing: border-box;
}

html, body {
  padding: 0;
  margin: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.5;
}

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

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 250, 247, 0.92);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  border-bottom: 1px solid #f0dde1;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1080px;
  margin: 0 auto;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--pink-dark);
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 15px;
}

.nav a {
  color: var(--ink);
  opacity: 0.8;
}

.nav a:hover {
  opacity: 1;
}

.btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  background: var(--pink);
  color: white;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease;
}

.btn:hover {
  background: var(--pink-dark);
}

.btn-outline {
  background: transparent;
  color: var(--pink-dark);
  border: 1.5px solid var(--pink);
}

.btn-outline:hover {
  background: var(--pink-light);
}

.hero {
  padding: 90px 24px 70px;
  text-align: center;
  background: linear-gradient(180deg, var(--pink-light) 0%, var(--cream) 100%);
}

.hero h1 {
  font-size: 48px;
  margin: 0 0 16px;
  color: var(--ink);
}

.hero p {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

section {
  padding: 64px 0;
}

h2.section-title {
  font-size: 32px;
  text-align: center;
  margin: 0 0 8px;
}

p.section-sub {
  text-align: center;
  color: var(--muted);
  margin: 0 0 40px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  grid-gap: 24px;
  gap: 24px;
}

.card {
  background: white;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 18px rgba(200, 130, 150, 0.08);
  border: 1px solid #f5e6ea;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 19px;
}

.card .price {
  color: var(--pink-dark);
  font-weight: 700;
  font-size: 17px;
}

.card p {
  color: var(--muted);
  font-size: 14.5px;
  margin: 8px 0 14px;
}

.badge {
  display: inline-block;
  background: var(--pink-light);
  color: var(--pink-dark);
  border-radius: 999px;
  font-size: 12px;
  padding: 4px 10px;
  margin-bottom: 10px;
}

.footer {
  border-top: 1px solid #f0dde1;
  padding: 32px 24px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

.auth-wrap {
  min-height: calc(100vh - 140px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
}

.auth-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 8px 30px rgba(200, 130, 150, 0.12);
  border: 1px solid #f5e6ea;
}

.auth-card h1 {
  font-size: 26px;
  margin: 0 0 6px;
  text-align: center;
}

.auth-card p.sub {
  text-align: center;
  color: var(--muted);
  margin: 0 0 28px;
  font-size: 14.5px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink);
}

.field input, .field select, .field textarea {
  width: 100%;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1.5px solid #eddadf;
  font-size: 15px;
  background: var(--cream);
}

.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--pink);
}

.error-box {
  background: #fdecec;
  color: #b1394a;
  border: 1px solid #f3c7cc;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 14px;
  margin-bottom: 18px;
}

.success-box {
  background: #eafaf0;
  color: #2c7a4b;
  border: 1px solid #c7ecd7;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 14px;
  margin-bottom: 18px;
}

.form-footer {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: var(--muted);
}

.form-footer a {
  color: var(--pink-dark);
  font-weight: 600;
}

.submit-btn {
  width: 100%;
  padding: 12px;
  font-size: 15.5px;
}

.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 12px;
}

.table-wrap {
  background: white;
  border-radius: 16px;
  border: 1px solid #f5e6ea;
  overflow: hidden;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  text-align: left;
  padding: 14px 20px;
  font-size: 14.5px;
  border-bottom: 1px solid #f5e6ea;
}

th {
  background: var(--pink-light);
  color: var(--pink-dark);
  font-weight: 700;
}

tr:last-child td {
  border-bottom: none;
}

.empty {
  padding: 40px;
  text-align: center;
  color: var(--muted);
}

