.sign-up {
  padding-top: 3.5rem;
  padding-bottom: 5rem;

  @media screen and (min-width: 768px) {
    padding-top: 5rem;
    padding-bottom: 10rem;
  }
}

.sign-up .container {
  position: relative;
}

.sign-up__gradient {
  pointer-events: none;
  position: absolute;
  top: 10%;
  left: 0;
  width: 60%;
  height: 60%;
  border-radius: 9999px;
  background: linear-gradient(180deg, rgba(0, 233, 228, 0.1) 0%, rgba(160, 79, 244, 0.2) 100%);
  filter: blur(100px);
}

.sign-up__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;

  @media screen and (min-width: 768px) {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
  }
}

.sign-up__content {
  padding-top: 2rem;
  grid-column: span 5 / span 5;

  @media screen and (min-width: 1024px) {
    grid-column: span 7 / span 7;
  }
}

.sign-up__subtitle {
  margin-bottom: 2rem;
  font-family: "Season Serif", sans-serif;
  font-size: clamp(18px, 2vw, 32px);
  line-height: 1;
  color: white;
}

.sign-up__title {
  margin-bottom: 1.5rem;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.15;
  color: white;
}

.sign-up__description {
  margin-bottom: 1rem;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
  color: white;
}

.sign-up__subdescription {
  margin-bottom: 1.5rem;
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.5;
  color: white;

  @media screen and (min-width: 768px) {
    margin-bottom: 3rem;
  }
}

.sign-up__methods {
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.5;
  color: white;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .sign-up__description,
  .sign-up__methods,
  .sign-up__methods-title {
    display: none;
  }
}

.sign-up__methods li::before {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  background-color: white;
  border-radius: 50%;
  display: inline-block;
  margin-right: 0.75rem;
}

.sign-up__methods li a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.sign-up__methods li a:hover {
  opacity: 0.6;
}

.sign-up__form {
  grid-column: span 7 / span 7;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 1.5rem;
  background: white;
  border-radius: 20px;

  @media screen and (min-width: 768px) {
    padding: 2.5rem;
  }

  @media screen and (min-width: 1024px) {
    grid-column: span 5 / span 5;
  }
}

.sign-up__form-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sign-up__label {
  display: block;
  font-size: 1rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;

  @media screen and (min-width: 768px) {
    font-size: 1.25rem;
  }
}

.sign-up__input {
  width: 100%;
  padding: 0.75rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-family: "Season Serif", sans-serif;
  font-size: 0.875rem;
  line-height: 1;
  color: white;
  transition: all 0.3s ease;
}

.sign-up__input:focus {
  outline: none;
  border-bottom-color: white;
}

.sign-up__input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.sign-up__input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.sign-up__input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.sign-up__input:-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.sign-up__input.placeholder-active {
  color: rgba(255, 255, 255, 0.6);
}

textarea.sign-up__input {
  min-height: 90px;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  resize: none;
}

textarea.sign-up__input:focus {
  border-color: white;
}

.sign-up__form-group-radio-group {
  display: flex;
  margin-top: 0.625rem;
  align-items: center;
  gap: 0.75rem;
}

.sign-up__form-group-radio input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.sign-up__form-group-radio label {
  position: relative;
  padding-left: 36px;
  font-size: 15px;
  line-height: 1.6;
  color: white;
}

.sign-up__form-group-radio label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 9999px;
  background-color: transparent;
  border: 1px solid white;
}

.sign-up__form-group-radio label::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 9999px;
  background-color: white;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.sign-up__form-group-radio input:checked + label::after {
  opacity: 1;
  visibility: visible;
}

.sign-up__submit {
  align-self: flex-end;
}

.guest-description {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 1rem;
}
.guest-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 2rem 0;
}
.guest-grid__item {
  display: flex;
  align-items: start;
  padding: 1.2rem 1.5rem;
  min-width: 0;
}
.guest-grid__item:has(.guest-grid__img-logo) {
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 0;
  padding-left: 0;
}
.guest-grid__img {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1.2rem;
  flex-shrink: 0;
}
.guest-grid__img-logo {
  width: 250px;
  height: 90px;
  object-fit: contain;
  margin-right: 2rem;
}
.guest-grid__logo img {
  width: 100px;
  height: 60px;
  object-fit: contain;
  margin-right: 1.2rem;
}

.guest-grid__logo svg {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-right: 1.2rem;
}
.guest-grid__info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.guest-grid__name {
  font-size: 20px;
  color: #fff;
  margin-bottom: 1rem;
  text-overflow: ellipsis;
  overflow: hidden;
}
.guest-grid__title {
  font-size: 1rem;
  color: #bfc6d1;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .guest-grid__logo.desktop-hide {
    display: none;
  }
  .guest-grid__item.guest-grid__item--center.mobile-hide {
    display: block;
  }
}

@media (max-width: 1024px) {
  .guest-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .guest-grid__logo.desktop-hide {
    display: block;
    padding-top: 0.5rem;
  }
  .guest-grid__item.guest-grid__item--center.mobile-hide {
    display: none;
  }
}
