* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #6a6969;
  font-family: sans-serif;
}

::placeholder {
  color: #9a9a9a;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #9a9a9a;
}

::-ms-input-placeholder {
  color: #9a9a9a;
}

button {
  cursor: pointer;
  border: 0;
}

a {
  text-decoration: none;
}

body {
  background: #f3ffff;
}

.x-banner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.x-banner img {
  width: 50%;
}

.x-form {
  display: flex;
  flex-direction: column;
  width: 50%;
  margin: 2rem auto;
}

.x-input__items {
  display: flex;
  gap: 1rem;
}

.x-input__items input {
  width: 100%;
  padding: 0.8rem;
  background: none;
  border: 1px solid #e1e1e1;
  margin: 0.5rem 0;
  border-radius: 0.5rem;
  font-size: 1rem;
}

.x-information {
  margin: 0.5rem 0 1rem 0;
  font-size: 1rem;
}

.x-skinQuestions__title {
  color: #c42c7d;
  font-size: 1.5rem;
  letter-spacing: 2px;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.x-skinQuestions__question {
  color: #000;
  font-family: serif;
  font-weight: 600;
  font-size: 1rem;
  margin: 0.5rem 0;
}

.x-skinQuestions__wrapper {
  margin: 1rem 0;
}

.x-skinQuestions__answers {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.x-skinQuestions__answerItem {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.x-skinQuestions__answerItem label {
  font-size: 1rem;
}

.x-optins a {
  color: #6f97d3;
}

.x-button__submit {
  border-radius: 2rem;
  padding: 1rem;
  min-width: 200px;
  width: 30%;
  margin: 1rem 0;
  color: #fff;
  background: linear-gradient(110deg, #08316b 45%, #26aed1 100%);
}

@media (max-width: 768px) {
  .x-banner img {
    width: 90%;
  }

  .x-form {
    width: 90%;
  }

  .x-skinQuestions__title {
    font-size: 1.1rem;
  }

  .x-button__submit {
    align-self: center;
  }
}
