.button {
  font: 400 16px / 18px 'Raleway';
  display: inline-block;
  color: #FFFFFF;
  border-radius: 8px;
  border: none;
  background: linear-gradient(277.36deg, #05667d, #023247);
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
  padding: 7px 24px;
  text-align: center;
  transform: skew(-6deg);
  margin: 0;
}
.button:hover {
  color: #FFFFFF;
}
@media print, screen and (min-width: 1024px) {
  .button {
    font: 400 16px / 18px 'Raleway';
  }
}
@media print, screen and (min-width: 1440px) {
  .button {
    font: 400 16px / 18px 'Raleway';
  }
}
.button.secondary {
  background: #edf5f7;
  color: #000;
  border: 1px solid #E5E5E5;
}
.button.tertiary {
  background: #edf5f7;
  color: #000;
  border: 1px solid #edf5f7;
}
.button.alert {
  background: #c32b41;
  color: #FFFFFF;
}
.button.load {
  cursor: not-allowed;
  opacity: 0.5;
}
.button.cta {
  padding: 12px 24px 10px;
  border: none;
  background: linear-gradient(225deg, #fa5749, #c32b41);
}
.button.small {
  padding: 4px 7px;
}
[type=text],
[type=password],
[type=date],
[type=datetime],
[type=datetime-local],
[type=month],
[type=week],
[type=email],
[type=number],
[type=search],
[type=tel],
[type=time],
[type=url],
[type=color],
select,
textarea {
  border-radius: 0;
  color: #000;
  line-height: 24px;
  font-size: 16px;
  height: 50px;
  border: 1px solid #dddfe1;
}
textarea {
  height: 200px;
}
label {
  cursor: pointer;
  color: #000;
}
label .label {
  color: #000;
  font: 400 16px / 18px 'Raleway';
  background-color: transparent;
  padding: 0;
  cursor: pointer;
  margin-bottom: 8px;
}
@media print, screen and (min-width: 1024px) {
  label .label {
    font: 400 16px / 18px 'Raleway';
  }
}
@media print, screen and (min-width: 1440px) {
  label .label {
    font: 400 16px / 18px 'Raleway';
  }
}
.help-text {
  font: 400 20px / 24px 'Raleway';
  background-color: transparent;
  padding: 0;
  cursor: pointer;
  color: #000;
}
@media print, screen and (min-width: 1024px) {
  .help-text {
    font: 400 20px / 24px 'Raleway';
  }
}
@media print, screen and (min-width: 1440px) {
  .help-text {
    font: 400 20px / 24px 'Raleway';
  }
}
.button-group,
.btn-group {
  margin-top: 16px;
  display: flex;
  flex-direction: row;
  gap: 16px;
}
