
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Lucida Grande", Tahoma, Verdana, sans-serif;
}
p {
  font-size: 14px;
}
li {
  font-size: 14px;
}

.mb-3 {
  margin-bottom: 12px;
}
.mb-5 {
  margin-bottom: 20px;
}
.pt-3 {
  padding-top: 12px;
}
.main-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3vmin;
}
.form-heading {
  color: #07074d;
  font-weight: 1000;
  font-size: 24px;
}
.form-wrapper {
  margin: 0 auto;
  max-width: 550px;
  width: 100%;
  background: white;
}
.form-label {
  display: block;
  font-weight: 500;
  font-size: 16px;
  color: #07074d;
  margin-bottom: 12px;
}
.form-label-2 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 20px;
}
.form-input {
  width: 100%;
  padding: 12px 24px;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
  background: white;
  font-weight: 500;
  font-size: 16px;
  color: #6b7280;
  outline: none;
  resize: none;
}
.form-input:focus {
  border-color: #6a64f1;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
}

.radio-flex {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.radio-group {
  margin-bottom: 20px;
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}


.radio-group input {
  position: absolute !important;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  width: 1px;
  border: 0;
  overflow: hidden;
}

.radio-group label {
  background-color: #e4e4e4;
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  line-height: 1;
  text-align: center;
  padding: 8px 16px;
  margin-right: -1px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
  transition: all 0.1s ease-in-out;
  flex-grow: 1;
}
.radio-group label:hover {
  cursor: pointer;
}

.radio-group input:checked + label {
  background-color: #a5dc86;
  box-shadow: none;
}

/* Don't care */
.radio-group input[value="0"]:checked + label {
  background-color: #ffd97d;
  box-shadow: none;
}
/* Gerne */
.radio-group input[value="1"]:checked + label {
  background-color: #aaf683;
  box-shadow: none;
}
/* Unbedingt */
.radio-group input[value="2"]:checked + label {
  background-color: #60d394;
  box-shadow: none;
}
/* Erforderlich */
.radio-group input[value="-1"]:checked + label {
  background-color: #ee6055;
  box-shadow: none;
}

.radio-group label:first-of-type {
  border-radius: 4px 0 0 4px;
}

.radio-group label:last-of-type {
  border-radius: 0 4px 4px 0;
}

.radio-group legend {
    color: #07074d;
    display: block;
    font-weight: 500;
    font-size: 16px;
    flex-basis: 100%;
}
.radio-group legend details{
  font-weight: 400;
  font-size: 14px;
  flex-basis: 100%;
}
.btn {
  text-align: center;
  font-size: 20px;
  border-radius: 6px;
  padding: 14px 32px;
  border: none;
  font-weight: 600;
  background-color: #6a64f1;
  color: white;
  width: 100%;
  cursor: pointer;
}
.btn:hover {
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
}

.mx-3 {
  margin-left: -12px;
  margin-right: -12px;
}
.px-3 {
  padding-left: 12px;
  padding-right: 12px;
}
.flex {
  display: flex;
}
.flex-wrap {
  flex-wrap: wrap;
}
.w-full {
  width: 100%;
}
@media (min-width: 540px) {
  .sm\:w-half {
    width: 50%;
  }
}
