:root {
  --line-adornment: none;
  --ellipse-adornment: block;
  --primary-color: #942cd6;
  --hover-color: #a743e8;
  --titles-color: #942cd6;
  --subtitles-color: #942cd6;
  --subtitles-color-2: #7f7f80;
  --text-color: #ffffff;
  --simple-text-color: #7f7f80;
  --highlight-color: #7f7f80;
  --gradient-text-color: linear-gradient(
    270.38deg,
    #fdbf2f -3.6%,
    #f04d24 55.59%,
    #8819cd 114.78%
  );

  --background-300-600: url(../img/line-background.png),
    linear-gradient(
        180deg,
        rgba(109, 42, 203, 0.02) 0%,
        rgba(254, 241, 233, 0.02) 51.17%,
        rgba(255, 110, 49, 0.02) 100%
      )
      #ffeee4;

  --background-800-450: url(../img/line-background.png),
    linear-gradient(
        180deg,
        rgba(109, 42, 203, 0.05) 0%,
        rgba(254, 241, 233, 0.05) 51.17%,
        rgba(255, 110, 49, 0.05) 100%
      )
      #ffeee4;

  --background-970-250: url(../img/line-background.png),
    linear-gradient(
        180deg,
        rgba(109, 42, 203, 0.05) 0%,
        rgba(254, 241, 233, 0.05) 51.17%,
        rgba(255, 110, 49, 0.05) 100%
      )
      #ffeee4;

  --background-300-250: url(../img/line-background.png),
    linear-gradient(
        180deg,
        rgba(109, 42, 203, 0.05) 0%,
        rgba(254, 241, 233, 0.05) 51.17%,
        rgba(255, 110, 49, 0.05) 100%
      )
      #ffeee4;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: DM Sans, Arial, sans-serif;
}

#ad-container {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 300px;
  max-width: 970px;
  height: 100vh;
  max-height: 600px;
  min-height: 250px;
  margin: 0 auto;
  position: relative;
}

.ad-step {
  height: 100%;
  flex: 1;
}

#step-1 {
  display: flex;
  padding: 1rem;
  flex: 1;
  justify-content: center;
  position: relative;
}

#quiz-question {
  display: flex;
}

#quiz-question-title {
  font-size: 1.3rem;
  line-height: 1.3rem;
  font-weight: 400;
  color: #ff9c4b;
  display: flex;
  align-items: center;
}

#quiz-question-subtitle {
  font-size: 1.1rem;
  line-height: 1.1rem;
  font-weight: 250;
  display: flex;
  align-items: center;
  flex: 1;
}

#quiz-options {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.8rem;
  font-size: 1.2rem;
  font-weight: 400;
  color: #ff9c4b;
}

.quiz-option {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2.7rem;
  background-color: var(--primary-color);
  color: var(--text-color);
  border-radius: 0.5rem;
}

.quiz-option:hover {
  background-color: var(--hover-color);
  cursor: pointer;
}

#ad-form-subtitle {
  line-height: 1.5rem;
  font-size: 1.1rem;
  font-weight: 250;
}

.powered-text {
  position: absolute;
  bottom: 0;
  right: 0;
  color: gray;
  font-size: 13px;
  padding: 0;
  z-index: 1000;
}

#ad-form-title {
  font-size: 1.5rem;
  line-height: 1.5rem;
  font-weight: 500;
  color: #ff9c4b;
  flex: 1;
}

#ad-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
a.link-style {
  color: var(--simple-text-color);
}

#powered-link-style {
  color: var(--simple-text-color);
}

#name-fields {
  display: flex;
  gap: 0.5rem;
  flex: 1;
}

#email-field {
  display: flex;
  flex: 1;
}

#ad-form-checkbox {
  font-size: 1rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-weight: 250;
}

.text-input {
  flex: 1;
  padding: 0 0.5rem;
  height: 2.5rem;
  border: 1px solid #e3e8ef;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 250;
  font-family: inherit;
}

#name-fields .text-input {
  flex: 1;
  min-width: 0;
}

.text-input::placeholder {
  color: #a7a6a6;
  opacity: 1;
  font-weight: 250;
}

.checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 1rem;
  height: 1rem;
  border: 2px solid #e3e8ef;
  border-radius: 0.25rem;
  margin-right: 0.5rem;
  display: grid;
  place-content: center;
  cursor: pointer;
  background-color: var(--text-color);
}

.checkbox::before {
  content: "";
  width: 0.25rem;
  height: 0.25rem;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em #ff9c4b;
  transform-origin: center;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

.checkbox:checked::before {
  transform: scale(3);
}

.checkbox:focus {
  outline: 2px solid #ff9c4b;
  outline-offset: 2px;
}

.checkbox:hover {
  border-color: #ff9c4b;
}

#ad-form-button {
  background-color: var(--primary-color);
  color: var(--text-color);
  border: 0;
  border-radius: 0.5rem;
  font-size: 1rem;
  height: 2.3rem;
}

#form-button:hover {
  background-color: #fab780;
  cursor: pointer;
}

.highlight {
  color: var(--highlight-color);
  font-weight: bold;
}

#step-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.5rem;
  font-weight: 500;
  color: #ff9c4b;
  flex: 1;
}

.term-text {
  color: var(--simple-text-color);
}

/* 300 x 250 */
@media (max-width: 400px) and (max-height: 350px) {
  /* Container */
  #ad-container {
    background: var(--background-300-250);
    display: flex;
    flex-direction: column;
    width: 100vw;
    min-width: 300px;
    max-width: 970px;
    height: 100vh;
    min-height: 250px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 1.5rem;
  }

  /* Step 2 */
  #step-1 {
    display: flex;
    flex-direction: column;
    padding: 0.5rem;
    flex: 1;
    position: relative;
  }

  #step-1 .line-vector {
    display: none;
  }

  #step-1 .ellipse-vector {
    display: none;
  }

  #step-1 .ad-form-header {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 0.2rem;
    margin-top: 0.5rem;
  }

  #step-1 .ad-form-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--titles-color);
    margin: 0;
    text-align: left;
  }

  #step-1 .ad-form-subtitle {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--subtitles-color-2);
    margin: 0;
    text-align: left;
  }

  #step-1 .ad-logo {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 0;
  }

  #step-1 .ad-logo img {
    height: 28px;
    width: auto;
  }

  #step-1 .title-subtitle-container {
    display: flex;
    flex-direction: column;
  }

  #step-1 .ad-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    width: 100%;
    margin-bottom: 1rem;
  }

  #step-1 .text-input {
    width: 100%;
    height: 33px;
    padding: 0.5rem;
    border-radius: 8px;
    font-size: 12px;
  }

  #step-1 .ad-form-checkbox {
    display: flex;
    padding: 2px 3px;
    align-items: center;
    gap: 0.3rem;
    font-size: 12px;
    color: var(--text-color);
  }

  #step-1 .ad-form-image {
    display: none;
  }

  #step-1 .ad-form-button {
    background-color: var(--primary-color);
    color: var(--text-color);
    border: none;
    border-radius: 0.5rem;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    width: 285px;
    text-align: center;
    height: 1.8rem;
  }

  #step-1 .ad-form-button:hover {
    background-color: var(--hover-color);
  }

  /* Step 3 */
  #step-2 {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    flex: 1;
    overflow: hidden;
  }

  #step-2 .line-vector {
    display: var(--line-adornment);
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: auto;
    z-index: 0;
    transform: rotate(-120deg);
  }

  #step-2 .ellipse-left {
    display: var(--ellipse-adornment);
    position: absolute;
    width: 64px;
    height: 64px;
    top: 30px;
    left: -20px;
    background: url("../img/ellipse-vector.png") no-repeat center/contain;
    transform: rotate(-160deg);
  }

  #step-2 .ellipse-right {
    display: var(--ellipse-adornment);
    position: absolute;
    width: 44px;
    height: 44px;
    bottom: 40px;
    right: -10px;
    background: url("../img/ellipse-vector.png") no-repeat center/contain;
    transform: rotate(80deg);
  }

  #step-2 .confirmation-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
  }

  #step-2 .ad-logo {
    margin-bottom: 0.3rem;
  }

  #step-2 .ad-logo img {
    height: 64px;
    width: auto;
  }

  #step-2 .confirmation-title {
    font-size: 31px;
    font-weight: 900;
    line-height: 35px;
    color: var(--titles-color);
    margin: 0;
  }

  #step-2 .confirmation-subtitle {
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    color: var(--subtitles-color);
    margin: 0.5rem 0 0;
    width: 200px;
  }

  #step-2 .confirmation-form-group {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  #step-2 .confirmation-button {
    background-color: var(--primary-color);
    color: var(--text-color);
    border: none;
    border-radius: 0.5rem;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    width: 285px;
    text-align: center;
    padding: 8px 16px;
  }

  #step-2 .confirmation-button:hover {
    background-color: var(--hover-color);
  }
}

/* 300 x 600 */
@media (max-width: 550px) and (min-height: 351px) {
  /* Container */
  #ad-container {
    background: var(--background-300-600);
    display: flex;
    flex-direction: column;
    width: 100vw;
    min-width: 300px;
    max-width: 970px;
    height: 100vh;
    max-height: 600px;
    min-height: 250px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding-bottom: 1.5rem;
  }

  /* Step 1 */
  #step-1 {
    flex-direction: column;
    padding: 0;
    flex: 1;
  }

  #step-1 .line-vector {
    display: var(--line-adornment);
    position: absolute;
    top: -50px;
    right: -50px;
    width: 120px;
    height: auto;
    z-index: 0;
    transform: rotate(-115deg);
  }

  #step-1 .ellipse-left {
    display: var(--ellipse-adornment);
    position: absolute;
    width: 160px;
    height: 160px;
    bottom: -90px;
    left: -50px;
    background: url("../img/ellipse-vector.png") no-repeat center/contain;
    z-index: 0;
    transform: rotate(120deg);
  }

  #step-1 .ellipse-right {
    display: var(--ellipse-adornment);
    position: absolute;
    width: 160px;
    height: 160px;
    top: -50px;
    right: -90px;
    background: url("../img/ellipse-vector.png") no-repeat center/contain;
    transform: rotate(-20deg);
  }

  #step-1 .ad-form-header {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
  }

  #step-1 .ad-form-title {
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    width: 70%;
    color: var(--titles-color);
  }

  #step-1 .ad-form-subtitle {
    font-size: 12px;
    text-align: center;
    font-weight: 400;
    width: 100%;
    color: var(--simple-text-color);
  }

  #step-1 .ad-logo {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
  }

  #step-1 .ad-logo img {
    height: 48px;
  }

  #step-1 .title-subtitle-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  #step-1 .ad-form-button {
    background-color: var(--primary-color);
    color: var(--text-color);
    border: 0;
    border-radius: 0.5rem;
    font-size: 1rem;
    height: 2.3rem;
  }

  #step-1 .ad-form-image {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #step-1 .ad-form-image img {
    max-width: 100%;
    height: auto;
    z-index: 1;
  }

  #step-1 .ad-form {
    padding: 1rem;
    flex: 1;
  }

  #step-1 .ad-form-group {
    gap: 1rem;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
  }

  #step-1 .ad-form-checkbox {
    display: flex;
    font-size: 12px;
    font-weight: 400;
    line-height: 12px;
    color: var(--text-color);
    gap: 0.5rem;
    align-items: center;
  }

  /* Step 3 */
  #step-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    flex: 1;
  }

  #step-2 .line-vector {
    display: var(--line-adornment);
    position: absolute;
    top: -50px;
    right: -50px;
    width: 120px;
    height: auto;
    z-index: 0;
    transform: rotate(-115deg);
  }

  #step-2 .ellipse-left {
    display: var(--ellipse-adornment);
    position: absolute;
    width: 160px;
    height: 160px;
    bottom: -90px;
    left: -50px;
    background: url("../img/ellipse-vector.png") no-repeat center/contain;
    z-index: 0;
    transform: rotate(120deg);
  }

  #step-2 .ellipse-right {
    display: var(--ellipse-adornment);
    position: absolute;
    width: 160px;
    height: 160px;
    top: -40px;
    right: -80px;
    background: url("../img/ellipse-vector.png") no-repeat center/contain;
    transform: rotate(-20deg);
  }

  #step-2 .confirmation-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  #step-2 .confirmation-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 4rem;
    margin-top: -7rem;
  }

  #step-2 .text-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  #step-2 .confirmation-title {
    font-size: 32px;
    font-weight: 900;
    line-height: 36px;
    color: var(--titles-color);
    margin: 0;
  }

  #step-2 .confirmation-subtitle {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--subtitles-color);
    margin: 0.1rem 0 0;
    width: 200px;
  }

  #step-2 .confirmation-button {
    background-color: var(--primary-color);
    color: var(--text-color);
    border: none;
    border-radius: 0.5rem;
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;
    height: 2rem;
    padding: 6px 12px;
    cursor: pointer;
    width: 280px;
    margin-top: -1rem;
  }

  #step-2 .confirmation-form-group {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  #step-2 .ad-logo {
    margin-bottom: 2rem;
  }

  #step-2 .ad-logo img {
    max-width: 56px;
    height: auto;
  }
}

/* 970 x 250 */
@media (min-width: 551px) and (max-height: 350px) {
  /* Container */
  #ad-container {
    background: var(--background-970-250);
    display: flex;
    flex-direction: column;
    width: 100vw;
    min-width: 300px;
    max-width: 970px;
    height: 100vh;
    max-height: 600px;
    min-height: 250px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding-bottom: 1.5rem;
  }

  .powered-text {
    color: #ffffff;
  }

  #powered-link-style {
    color: #ffffff;
  }

  /* Step 2 */
  #step-1 {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    padding: 0.3rem;
    flex: 1;
  }

  #step-1 .line-vector {
    display: var(--line-adornment);
    position: absolute;
    bottom: -80px;
    right: -50px;
    width: 240px;
    height: auto;
    z-index: 1;
  }

  #step-1 .ellipse-left {
    display: var(--ellipse-adornment);
    position: absolute;
    width: 140px;
    height: 140px;
    top: -80px;
    left: -1px;
    background: url("../img/ellipse-vector.png") no-repeat center/contain;
    z-index: 0;
    transform: rotate(-70deg);
  }

  #step-1 .ellipse-right {
    display: var(--ellipse-adornment);
    position: absolute;
    width: 150px;
    height: 150px;
    bottom: -90px;
    right: -20px;
    background: url("../img/ellipse-vector.png") no-repeat center/contain;
    transform: rotate(70deg);
  }

  #step-1 .ad-form {
    display: flex;
    flex-direction: row-reverse;
    width: 100%;
    align-items: flex-start;
  }

  #step-1 .ad-form-image {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    height: 100%;
  }

  #step-1 .ad-form-image img {
    max-width: 100%;
    height: 180px;
    border-radius: 8px;
    z-index: 1;
  }

  #step-1 .content-container {
    flex: 2;
    max-width: 80%;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    z-index: 2;
  }

  #step-1 .ad-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex: 1;
  }

  #step-1 .ad-form-header {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 0;
  }

  #step-1 .ad-logo {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
  }

  #step-1 .ad-logo img {
    height: 45px;
    width: auto;
  }

  #step-1 .title-subtitle-container {
    display: flex;
    flex-direction: column;
  }

  #step-1 .ad-form-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    color: var(--titles-color);
    margin: 0;
    text-align: left;
    width: 500px;
  }

  #step-1 .ad-form-subtitle {
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: var(--simple-text-color);
    text-align: left;
    width: 100%;
  }

  #step-1 .text-input {
    width: 100%;
    border-radius: 8px;
    font-size: 14px;
    border: 1px solid #e3e8ef;
  }

  #step-1 .ad-form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 14px;
    color: var(--text-color);
  }

  #step-1 .ad-form-button {
    background-color: var(--primary-color);
    color: var(--text-color);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    text-align: center;
    padding: 6px 12px;
    height: 2rem;
    margin-top: 3px;
  }

  #step-1 .ad-form-button:hover {
    background-color: var(--hover-color);
  }

  /* Step 3 */
  #step-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    flex: 1;
  }

  #step-2 .line-vector {
    display: var(--line-adornment);
    position: absolute;
    bottom: -80px;
    right: -50px;
    width: 240px;
    height: auto;
    z-index: 1;
  }

  #step-2 .ellipse-left {
    display: var(--ellipse-adornment);
    position: absolute;
    width: 140px;
    height: 140px;
    top: -80px;
    left: -1px;
    background: url("../img/ellipse-vector.png") no-repeat center/contain;
    z-index: 0;
    transform: rotate(-70deg);
  }

  #step-2 .ellipse-right {
    display: var(--ellipse-adornment);
    position: absolute;
    width: 150px;
    height: 150px;
    bottom: -90px;
    right: -20px;
    background: url("../img/ellipse-vector.png") no-repeat center/contain;
    transform: rotate(70deg);
  }

  #step-2 .confirmation-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    width: 100%;
    justify-content: flex-start;
    margin-left: 1rem;
    z-index: 2;
  }

  #step-2 .ad-logo {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #step-2 .ad-logo img {
    height: 64px;
    width: auto;
  }

  #step-2 .text-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }

  #step-2 .confirmation-title {
    font-size: 31px;
    font-weight: 900;
    line-height: 35px;
    color: var(--titles-color);
    margin: 0;
    text-align: left;
  }

  #step-2 .confirmation-subtitle {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--subtitles-color);
    margin: 0;
    text-align: left;
    width: 400px;
  }

  #step-2 .confirmation-form-group {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    width: 100%;
  }

  #step-2 .confirmation-button {
    background-color: var(--primary-color);
    color: var(--text-color);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    height: 2.5rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    width: 600px;
    text-align: center;
  }

  #step-2 .confirmation-button:hover {
    background-color: var(--hover-color);
  }
}

/* 800 x 450 */
@media (min-width: 551px) and (min-height: 351px) {
  /* Container */
  #ad-container {
    background: var(--background-800-450);
    display: flex;
    flex-direction: column;
    width: 100vw;
    min-width: 300px;
    max-width: 970px;
    height: 100vh;
    max-height: 600px;
    min-height: 250px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding-bottom: 1.5rem;
  }

  /* Step 2 */
  #step-1 {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    padding: 1rem;
    flex: 1;
  }

  #step-1 .line-vector {
    display: none;
  }

  #step-1 .ellipse-left {
    display: var(--ellipse-adornment);
    position: absolute;
    width: 225px;
    height: 225px;
    bottom: -90px;
    left: -50px;
    background: url("../img/ellipse-vector.png") no-repeat center/contain;
    z-index: 0;
    transform: rotate(-20deg);
  }

  #step-1 .ellipse-right {
    display: var(--ellipse-adornment);
    position: absolute;
    width: 200px;
    height: 200px;
    top: -40px;
    right: -80px;
    background: url("../img/ellipse-vector.png") no-repeat center/contain;
  }

  #step-1 .ad-form {
    display: flex;
    flex-direction: row-reverse;
    width: 100%;
    align-items: center;
  }

  #step-1 .ad-form-image {
    flex: 3;
    max-width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin-right: 20px;
  }

  #step-1 .ad-form-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    z-index: 1;
  }

  #step-1 .content-container {
    flex: 2;
    max-width: 70%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  #step-1 .ad-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
  }

  #step-1 .ad-form-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }

  #step-1 .ad-logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
  }

  #step-1 .ad-logo img {
    height: 64px;
    width: auto;
  }

  #step-1 .ad-form-title {
    font-size: 32px;
    font-weight: 600;
    color: var(--titles-color);
    margin: 0;
    text-align: left;
    width: 100%;
  }

  #step-1 .ad-form-subtitle {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--simple-text-color);
    text-align: left;
    width: 100%;
  }

  #step-1 .text-input {
    width: 100%;
    padding: 0.8rem;
    border-radius: 8px;
    font-size: 14px;
    border: 1px solid #e3e8ef;
  }

  #step-1 .ad-form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 14px;
    color: var(--text-color);
  }

  #step-1 .ad-form-button {
    background-color: var(--primary-color);
    color: var(--text-color);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    height: 2rem;
    cursor: pointer;
    width: 100%;
    text-align: center;
    margin-top: 1rem;
  }

  #step-1 .ad-form-button:hover {
    background-color: var(--hover-color);
  }

  /* Step 3 */
  #step-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    flex: 1;
  }

  #step-2 .line-vector {
    display: var(--line-adornment);
    position: absolute;
    top: -80px;
    right: -120px;
    width: 290px;
    height: auto;
    z-index: 0;
    transform: rotate(-110deg);
  }

  #step-2 .ellipse-left {
    display: var(--ellipse-adornment);
    position: absolute;
    width: 225px;
    height: 225px;
    bottom: -90px;
    left: -50px;
    background: url("../img/ellipse-vector.png") no-repeat center/contain;
    z-index: 0;
    transform: rotate(-20deg);
  }

  #step-2 .ellipse-right {
    display: var(--ellipse-adornment);
    position: absolute;
    width: 210px;
    height: 210px;
    top: -40px;
    right: -80px;
    background: url("../img/ellipse-vector.png") no-repeat center/contain;
  }

  #step-2 .confirmation-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    width: 100%;
    justify-content: flex-start;
    margin-left: 1rem;
  }

  #step-2 .ad-logo {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #step-2 .ad-logo img {
    height: 75px;
    width: auto;
  }

  #step-2 .text-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }

  #step-2 .confirmation-title {
    font-size: 30px;
    font-weight: 900;
    line-height: 33 px;
    color: var(--titles-color);
    margin: 0;
    text-align: left;
  }

  #step-2 .confirmation-subtitle {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--subtitles-color);
    margin: 0;
    text-align: left;
    width: 400px;
  }

  #step-2 .confirmation-form-group {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    width: 100%;
  }

  #step-2 .confirmation-button {
    background-color: var(--primary-color);
    color: var(--text-color);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    height: 2rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    width: 600px;
    text-align: center;
    margin-top: 1rem;
  }

  #step-2 .confirmation-button:hover {
    background-color: var(--hover-color);
  }
}

.ad-step.active {
  display: flex;
}

.ad-step.inactive {
  display: none !important;
}
