* {
  box-sizing: border-box;
  font-family: 'Saira Semi Condensed', 'Segoe UI', Tahoma, Geneva, Verdana,
    sans-serif;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

body {
  font-weight: 400;
  font-size: 16px;
  margin: 0;
  padding: 0;
  color: #ffffff;
  background: #162331;
  font-family: 'Saira Semi Condensed', 'Segoe UI', Tahoma, Geneva, Verdana,
    sans-serif;
}

h1 {
  font-size: 2rem;
}

h3 {
  margin: 0;
}

input,
select,
textarea,
button {
  font-family: inherit;
  font-size: inherit;
}

ul {
  padding-left: 0;
  list-style: none;
}

a {
  text-decoration: none;
}

p,
label {
  text-align: left;
}

button,
.button {
  padding: 0.4rem 1rem;
  outline: none;
  background: #647990;
  color: #ffffff;
  border-radius: 0.2rem;
  border: none;
  transition: background 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
}

button:hover,
.button:hover {
  background: #87a2c0;
  cursor: pointer;
}

input {
  background: #ffffff;
  border-radius: 0.2rem;
  color: #162331;
  padding: 0.4rem 0.75rem;
  border: none;
  outline: none;
  height: 2rem;
}

input:focus {
  box-shadow: 0 0 10px -1px #fff;
}

textarea {
  background: #ffffff;
  border-radius: 0.2rem;
  color: #162331;
  padding: 0.4rem 0.75rem;
  border: none;
  outline: none;
  margin-bottom: 1rem;
  resize: none;
}

textarea:focus {
  box-shadow: 0 0 10px -1px #fff;
}

.hidden {
  display: none;
}

.bold {
  font-weight: 600;
}

.colored {
  background: #a6784a;
}

.colored:hover {
  background: #c88847;
}

.flatpickr-day:hover {
  border-color: #c88847;
  background: #c88847;
  color: #ffffff;
}

.flatpickr-day.selected {
  border-color: #a6784a;
  background: #a6784a;
}

.flatpickr-day.selected:hover {
  border-color: #c88847;
  background: #c88847;
}

footer {
  display: grid;
  grid-template-columns: auto auto auto;
  padding: 2rem;
  justify-items: center;
  background: #1a304a;
  margin-top: 4rem;
}

footer a {
  margin: 0;
  color: #c88847;
}

footer a:hover {
  color: #ffffff;
}

button:disabled,
.button:disabled {
  cursor: not-allowed;
  background: #647990;
  color: #47494b;
}

button:disabled:hover,
.button:disabled:hover {
  cursor: not-allowed;
  background: #647990;
  color: #47494b;
}