/* styles.css */
* {
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;

  background-color: #f0f0f0;
  background-image: url("images/image4.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;

  display: flex;
  height: 100svh;
  justify-content: center;
  align-items: center;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;

  max-width: 600px;
  background-color: #e8e6df;
  border-radius: 10px;
}

.button {
  width: 100px;
  padding: 12px;
  background-color: #b30086;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.form_container {
  width: 100%;
}

.form-label {
  color: #000000;
  font-weight: bolder;
  text-align: center;
}

.text_input {
  padding: 1rem;
  border-radius: 8px;
  border: 2px solid #24293e;
  width: 90%;
}

.question {
  padding: 0.5rem;
  background: #54007d;
  border-radius: 6px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  color: #ffffff;
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
}

a {
  text-decoration: none;
}

ul {
  list-style-type: none;
}

.radio-item [type="radio"] {
  display: none;
}

.radio-list {
  width: 90%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.radio-item label {
  display: block;
  padding: 12px 55px;
  background: #b8acd0;

  border-radius: 6px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 400;

  position: relative;
  color: #000000;
}
.radio-item label:after,
.radio-item label:before {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.radio-item label:after {
  height: 20px;
  width: 20px;
  border: 2px solid #180269;
  left: 20px;
  top: calc(50% - 12px);
}
.radio-item label:before {
  background: #180269;
  height: 10px;
  width: 10px;
  left: 27px;
  top: calc(50% - 5px);
  transform: scale(5);
  transition: 0.4s ease-in-out 0s;
  opacity: 0;
  visibility: hidden;
}
.radio-item [type="radio"]:checked ~ label {
  border-color: #524eee;
}

.radio-item [type="radio"]:checked ~ label:before {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.next_prev-buttons {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

.additional-comments {
  width: 100%;
}

.comments_textarea {
  width: 100%;
  height: 150px;
  padding: 1rem;
  resize: none;
  border-radius: 10px;
  font-size: 1.25rem;
}
