/* Register Free Lesson Form Section */
.register-free-lesson-section {
  display: none;
  flex-direction: column;
  justify-content: center;
}

.register-free-lesson-section .container {
  background-color: #efefef;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 60px;
  border-radius: 12px;
  padding: 61px 84px;
}

.register-free-lesson-section .description {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.register-free-lesson-section .description p {
  max-width: 50%;
  font-family: Ubuntu;
  font-size: 20px;
  font-weight: 300;
  line-height: 26px;
  text-align: left;
}

.register-free-lesson-section .title {
  font-size: 40px;
  font-weight: 400;
  line-height: 48px;
  text-align: left;
}

.register-free-lesson-section .title span {
  color: #df0611;
}

.register-free-lesson-section .content {
  display: flex;
  align-items: center;
  gap: 32px;
}

.register-free-lesson-section .register-form {
  max-width: 540px;
  display: flex;
  flex-wrap: wrap;
  gap: var(--inner-gap);
}

.register-free-lesson-section .register-form .form {
  display: flex;
  flex-wrap: wrap;
  gap: var(--content-gap);
}

.register-free-lesson-section .inputs-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: var(--content-gap);
}

.register-free-lesson-section .register-form input[type="text"] {
  max-width: 250px;
}

.register-free-lesson-section .register-form button span {
  font-family: Ubuntu;
  font-size: var(--font-size-mobile);
  font-weight: 400;
  line-height: var(--line-height-mobile);
  text-align: left;
  color: inherit;
}

.register-free-lesson-section .summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.register-free-lesson-section .summary ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.register-free-lesson-section .summary li span {
  font-size: 18px;
  font-weight: 300;
  line-height: 23.4px;
  text-align: left;
  padding-left: 16px;
}

.register-free-lesson-section .summary li::marker {
  content: url("../../assets/register-free-lesson/list-icon.svg");
}

@media (min-width: 1280px) {
  .register-free-lesson-section {
    display: flex;
  }

  .register-free-lesson-section .container {
    width: 1200px;
    padding: 64px;
    gap: 32px;
    background-image: url("../../assets/register-free-lesson/request_free_lesson_2.png");
    background-size: 100% 100%;
  }

  .register-free-lesson-section .register-form .form {
    height: 135px;
  }

  .register-free-lesson-section .register-form button span {
    font-family: Ubuntu;
    font-size: 16px;
    font-weight: 400;
    line-height: 20.8px;
    text-align: left;
  }
}
