:root {
  --yellow: #ffc857;
  --primary: #ff9700;
  --primary-darken: #bc760e;
  --purple: #4b3f72;
  --purple-darken: #1f2041;
  --green: #489a44;
  --orange: #e0960c;
  --red: #a42828;
  --hover-color: #7d4d05;
}

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

html {
  font-size: 67.5%;
}

body {
  font-family: sans-serif;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 1.5;
}

.form-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.form-group:not(:first-of-type) {
  margin-top: 20px;
}

input:not([type='checkbox']):not([type='radio']):not([type='file']),
textarea {
  padding: 9px 10px;
  min-width: 340px;
  margin-top: 10px;
  font-size: 1.4rem;
  font-family: inherit;
}

textarea {
  line-height: 1.65;
}

input[type='radio']:checked + label {
  font-weight: bold !important;
}

.button {
  border: none;
  outline: none;
  padding: 10px 20px;
  font-size: 2rem;
  cursor: pointer;
  display: block;
  background-color: var(--primary);
  color: white;
  text-decoration: none;
  width: max-content;
  border-radius: 5px;
}

.primary {
  background-color: var(--primary) !important;
}
.green {
  background-color: var(--green) !important;
}

.button.center {
  margin: 0 auto;
}

.button.schedule {
  margin-left: auto;
  margin-top: 20px;
}

.button.back svg {
  height: 40px;
}

.button.small {
  font-size: 1.4rem;
  gap: 10px;
}

.button.back {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.button:hover {
  background-color: var(--primary-darken) !important;
}

.button.error {
  background-color: #960707;
}

img {
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

hr {
  margin: 20px 0;
}

code {
  font-size: 1rem;
  margin: 10px 0;
  background-color: #282837;
  padding: 20px 10px;
  border-radius: 8px;
}

ul,
li {
  margin-left: 20px;
}
