:root {
  --bg: #f6f6f6;
  --card: #ffffff;
  --text: #222;
  --muted: #666;
  --accent: #1f4fd8;
  --border: #e0e0e0;
  --radius: 12px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  display: flex;
  justify-content: center;
  padding: 40px 16px;
}

.container {
  max-width: 520px;
  width: 100%;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  padding: 32px 24px;
  text-align: center;
}

.photo-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--border);
  background: #ddd;
}

h1 {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 600;
}

.dates {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.95rem;
}

.divider {
  margin: 24px 0;
  height: 1px;
  background: var(--border);
}

.description {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 28px;
}

form {
  text-align: left;
}

label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--muted);
}

input,
select {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 18px;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-size: 1rem;
}

input:focus,
select:focus {
  outline: none;
  border-color: var(--accent);
}

button {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

button:hover {
  opacity: 0.95;
}

.success {
  display: none;
  margin-top: 20px;
  padding: 14px;
  border-radius: 8px;
  background: #e9f0ff;
  color: #143aa2;
  font-size: 0.95rem;
}

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