/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* TOKENS (MATCH BASE v1) */
:root {
  --yellow: #F6C35B;
  --text: #2C2C2C;
  --muted: #777;
}

/* BASE */
body {
  font-family: 'Montserrat', system-ui, sans-serif;
  background: #fff;
  color: var(--text);
  text-align: center;
}

/* OVERRIDE: allow normal capitalization like Base v1 */
.try-content,
.try-content h1,
.try-content p,
.try-content label,
.try-content select,
.try-content button {
 text-transform: none;
}

/* HERO */
.try-hero {
  background: var(--yellow);
  padding: 96px 24px;
}

.try-logo {
  width: 96px;
}

/* CONTENT */
.try-content {
  max-width: 480px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}

h1 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

.privacy-note {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 48px;
}

/* FORM */
.field-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.field-label {
  font-size: 14px;
}

/* INPUTS */
input[type="file"] {
  font-family: inherit;
}

select {
  font-family: inherit;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid #ccc;
  background: #fff;
  min-width: 220px;
  text-align: center;
}

/* BUTTON */
.save-button {
  margin-top: 24px;
  background: var(--yellow);
  border: none;
  border-radius: 999px;
  padding: 12px 32px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.save-button:hover {
  opacity: 0.9;
}

/* FILE INPUT CENTERING */
.file-group {
  display: flex;
  justify-content: center;
}

input[type="file"] {
  text-align: center;
}
