:root {
  --bg: #970000;;
  --bg-soft: #cb0000;
  --surface: rgba(207, 2, 2, 0.9215686274509803);
  --surface-2: rgba(189, 9, 9, 0.9490196078431372);
  --surface-3: rgba(247, 42, 30, 0.792156862745098);
  --border: rgba(197, 0, 0, 0.27450980392156865);
  --border-strong: rgba(145, 0, 0, 0.611764705882353);
  --text: #f8fafc;
  --text-soft: #cbd5e1;
  --text-dim: #94a3b8;
  --primary: #22c55e;
  --primary-strong: #16a34a;
  --accent: #38bdf8;
  --danger: #ef4444;
  --warning: #f59e0b;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  --radius: 20px;
  --radius-sm: 14px;
  --calendar-cell: 48px;
  --link: #ff8c00;
}

html, body {
  font-family: Arial, sans-serif;
}

body {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  color: var(--text);
  background:
      radial-gradient(circle at top, rgba(56, 189, 248, 0.10), transparent 28%),
      linear-gradient(180deg, var(--bg), var(--bg-soft));
  min-height: 100vh;
  transition: background 0.25s ease, color 0.25s ease;
}

a {
  color: var(--link);
  text-decoration: none;
}

h1 {
  text-align: center;
}

.info {
  text-align: center;
}

.line-break {
    width: 100%;
    text-align: center;
}

.button-orange {
  background-color: initial;
  background-image: linear-gradient(-180deg, #FF7E31, #E62C03);
  border-radius: 6px;
  box-shadow: rgba(0, 0, 0, 0.1) 0 2px 4px;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-block;
  font-family: Inter,-apple-system,system-ui,Roboto,"Helvetica Neue",Arial,sans-serif;
  height: 40px;
  outline: 0;
  overflow: hidden;
  padding: 0 20px;
  pointer-events: auto;
  position: relative;
  text-align: center;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
  vertical-align: top;
  white-space: nowrap;
  z-index: 9;
  border: 0;
  transition: box-shadow .2s;
  margin-top: 8px;
}

.button-orange:hover {
  box-shadow: rgba(253, 76, 0, 0.5) 0 3px 8px;
}

.input,
select {
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface-3);
  color: var(--text);
  padding: 12px 14px;
  outline: none;
}

.input:focus,
select:focus {
  border-color: rgba(248, 177, 21, 0.6823529411764706);
}

.label {
  display: block;
  margin-bottom: 8px;
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 0.95rem;
}
