
body {
  background-color: #cadea5;
  min-width: fit-content;
}

* {
  font-family: futura-pt, Jost, sans-serif;
  color: #000000;
  text-align: center;
}

label {
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  
  margin-left: 20px;
  margin-right: 20px;
}

input[type=checkbox] ~ label, input[type=radio] ~ label {
    margin-left: 0;
    margin-right: 0;
}

dt {
    font-weight: 600;
}

.error-message {
  color: red;
  display: none;
}

h1 {
  font-size: 100px;
  margin-block-start: 0.15em;
  margin-block-end: 0.15em;
}

h2 {
  font-size: 70px;
  margin-block-start: 1em;
  margin-block-end: 0.2em;
}

h3 {
    font-size: 50px;
    margin-block-start: 1em;
    margin-block-end: 0.15em;
}

ul {
    margin-block-start: 0.3em;
    margin-block-end: 0.3em;
}

p {
  font-size: 20px;
}

input[type=text] {
  font-size: 50px;
  width: 50%;
  border: 4px solid #000000;
  background-color: rgba(255,255,255,0.1);
}

input[type=submit] {
  background-color: #cadea5;
  color: #000000;
  border: 4px solid #000000;
  font-size: 50px;
  margin: 10px;
}

/* Hide the browser's default checkbox */
input[type=checkbox], input[type=radio] {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  appearance: none;
  /* For iOS < 15 to remove gradient background */
  background-color: #cadea5;
  /* Not removed via appearance */
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 1.15em;
  height: 1.15em;
  border: 0.15em solid currentColor;
  border-radius: 0.15em;
  transform: translateY(0.39em);
}

input[type=checkbox] {
    background-color: rgba(0, 0, 0, 0);
    background-color: #cadea5;
    color: #000000;
    border: 4px solid #000000;
    font-size: 30px;
    margin: 10px;
}

input[type=radio] {
    background-color: #cadea5;
    color: #000000;
    border: 4px solid #000000;
    font-size: 30px;
    margin: 10px;
    border-radius: 100em;
    margin-right: 20px;
}

.special-code-input {
    text-transform: uppercase;
}

li {
	display: list-item;
	position: relative;
	list-style: none;
	padding: 0.15em 0;
}

.option-container {
    display: inline-block;
    padding: 0;
}

svg {
	position: absolute;
	width: 40px;
	height: 40px;
	margin-top: 11px;
	margin-left: -58px;
	pointer-events: none;
}

svg path {
	stroke: #000000;
	stroke-width: 13px;
	stroke-linecap: round;
	stroke-linejoin: round;
	fill: none;
	transition: stroke-dashoffset 0.2s ease-in 0s;
}

svg path ~ path {
	transition: stroke-dashoffset 0.2s ease-out 0.2s;
}

input:checked ~ svg path {
	stroke-dashoffset: 0;
}

input:hover {
    opacity: 0.8;
}

input:hover ~ label {
    opacity: 0.8;
}

input:hover ~ svg path {
    opacity: 0.8;
}

form {
    top: 50%;
    left: 50%;
}

span {
  font-size: 50px;
}

button, form {
  font-size: 50px;
  padding: 10px;
}

img {
  padding-top: 50px;
  padding-bottom: 50px;
}

input[type=radio]::before {
  content: "";
  top: 2px;
  left: 2px;
  width: 22.5px;
  height: 22.5px;
  transform: scale(0);
  transition: 200ms transform ease-in-out;
  box-shadow: inset 1em 1em #000000;
  position: absolute;
  border-radius: 100em;
}

input[type=radio]:checked::before {
  transform: scale(1);
}
