:root {
  --bg: #0f1724;
  --card: #0b1220;
  --accent: #16a34a;
  --muted: #9aa4b2;
  --glass: rgba(255, 255, 255, 0.03);
  --radius: 14px;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(180deg, #071028 0%, #071a2a 60%);
  color: #e6eef6;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.wrap {
  width: 100%;
  max-width: 980px;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 20px;
}

@media (max-width: 900px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

.card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.01)
  );
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 8px 30px rgba(2, 6, 23, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.03);
}

h2 {
  margin: 0 0 8px;
  font-size: 22px;
}

.desc {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 10px;
}

/* Form Layout */
.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 12px;
}

.row-full {
  margin-bottom: 12px;
}

@media (max-width: 700px) {
  .row {
    grid-template-columns: 1fr;
  }
}

label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
}

input,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  background: rgba(255, 255, 255, 0.02);
  color: #fff;
  font-size: 14px;
}

input[type="date"] {
  color: #9aa4b2;
}
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1); /* this makes the icon white */
  cursor: pointer;
}
.btn {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
  /* font-weight: 700; */
  border: 0;
  background: #6a8b81;
  color: Black;
}

.btn.ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--muted);
}

.muted {
  font-size: 13px;
  color: var(--muted);
}

.right-small {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.result {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.015),
    rgba(255, 255, 255, 0.01)
  );
  padding: 16px;
  border-radius: 12px;
  text-align: center;
}

.notice {
  font-size: 13px;
  color: var(--muted);
}

select {
  border: 1px solid rgba(255, 255, 255, 0.03);
  background: rgba(255, 255, 255, 0.02);
  color: #9aa4b2;
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  font-size: 14px;
}
select option {
  color: Black;
}
