@charset "UTF-8";
:root {
  --brand:#0b5cff;
  --brand-ink:#0a47c3;
  --ink:#111827;
  --sub:#6b7280;
  --bg:#0b0c10;
  --card:#ffffff;
  --muted:#f3f4f6;
  --danger:#b91c1c;
  --ok:#065f46;
  --accent:#e7e530; /* Engi‑Yellow vibe if you want :) */
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: #f8f8f8;
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px;
}

header {
  background: #0b1220;
  color: #fff;
  min-height: 350px;
  border-radius: 20px;
  margin-bottom: 24px;
  background: url("../img/mountains.jpg") no-repeat 50% 40%;
  background-size: cover;
  position: relative;
}
header .inner {
  background: rgba(11, 18, 32, 0.65);
  padding: 30px;
  border-radius: 20px;
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: space-between;
}
header .inner .text-section {
  flex: 1;
}
header .inner .text-section .muted {
  color: #cbd5e1;
  margin-top: 8px;
  font-size: 11pt;
}
header .inner .text-section p {
  margin: 4px 0;
  font-size: 14pt;
}
header .inner .logo-holder {
  background: #fff;
  height: 220px;
  width: 220px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
header .inner .logo-holder img.logo {
  width: 220px;
  mix-blend-mode: multiply;
  padding: 30px;
}

header h1 {
  margin: 0 0 8px;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 920px) {
  .grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}
.card {
  background: var(--card);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
  padding: 22px;
}

h2 {
  margin: 0 0 14px;
  font-size: 1.25rem;
}

form {
  display: grid;
  gap: 16px;
}

.row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 10px;
}

@media (min-width: 720px) {
  .row.two {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .logo-holder {
    display: none;
  }
}
@media (min-width: 601px) {
  .logo-holder {
    display: flex;
  }
}
label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.hint {
  font-weight: 400;
  color: var(--sub);
  font-size: 0.85rem;
  margin-bottom: 10px;
}

input, select, textarea {
  width: 100%;
  padding: 12px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  font: inherit;
  background: #fff;
}

input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
  border-color: var(--brand);
}

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

.tag {
  display: inline-block;
  font-size: 0.8rem;
  padding: 0.3rem 0.6rem;
  background: var(--muted);
  border-radius: 999px;
  margin: 4px;
}

.fineprint {
  font-size: 0.85rem;
  line-height: 1.5;
}

.actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  padding: 16px 0;
}
.actions .hint {
  margin-top: 16px;
}

button.primary {
  background: var(--brand);
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(11, 92, 255, 0.35);
}

button.primary:hover {
  background: var(--brand-ink);
}

.btn-ghost {
  background: transparent;
  border: 1px solid #cbd5e1;
  padding: 12px 14px;
  border-radius: 12px;
  cursor: pointer;
}

.status {
  display: none;
  padding: 12px 14px;
  border-radius: 12px;
}

.status.ok {
  display: block;
  background: #ecfdf5;
  color: #064e3b;
  border: 1px solid #a7f3d0;
}

.status.err {
  display: block;
  background: #fef2f2;
  color: #7f1d1d;
  border: 1px solid #fecaca;
}

.required::after {
  content: " *";
  color: var(--danger);
}

details {
  border: 1px dashed #cbd5e1;
  padding: 12px 14px;
  border-radius: 12px;
}

summary {
  cursor: pointer;
  font-weight: 600;
}

.sr-only {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

footer {
  color: #64748b;
  font-size: 0.9rem;
  margin: 28px 0;
  text-align: center;
}

.rowx {
  margin-bottom: 10px;
}

.row.no-grid {
  display: block;
}

.checker {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.checker:last-child {
  margin-bottom: 0;
}
.checker input {
  width: 20px !important;
}
.checker label {
  margin-left: 8px;
  font-weight: 400;
  width: 100%;
}

label.consent, label.declaration {
  font-weight: 400;
}/*# sourceMappingURL=volunteer.css.map */