/* Register Form Section */
.register-form-section .container {
  display: flex;
  flex-direction: column;
  background-color: #efefef;
  border-radius: 12px;
  padding-top: 20px;
  gap: var(--inner-gap);
}

.register-form-section .content {
  display: flex;
  flex-direction: column;
  /*align-items: center;*/
  gap: var(--container-gap);
}

.register-form-section .content .summary {
  display: flex;
  flex-direction: column;
  gap: var(--content-gap);
  padding: 0px var(--padding-small);
}

.register-form-section .summary h2 {
  font-size: var(--h2-font-size-mobile);
  font-weight: 400;
  line-height: var(--h2-line-height-mobile);
  text-align: left;
}

.register-form-section .summary h2 span {
  color: #df0611;
}

.register-form-section .summary p {
  font-size: var(--font-size-mobile);
  font-weight: 300;
  line-height: var(--line-height-mobile);
  text-align: left;
  color: #353535;
}

.register-form-section .register-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0px 16px;
  gap: var(--inner-gap);
}

.register-form-section .register-form .form {
  display: flex;
  flex-direction: column;
  gap: var(--content-gap);
}

.register-form-section .inputs-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--content-gap);
}

.register-form-section .register-form input[type="text"],
.register-form-section .register-form input[type="tel"] {
    border: 1px solid #BFC0C5;
}

.register-form-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;
}

.register-form-section .content-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  align-self: center;
}

.register-form-section .content-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

@media (min-width: 1280px) {
  .register-form-section .container {
    width: 1200px;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 0px;
    gap: 0px;
  }

  .register-form-section .content {
    max-width: 75%;
    align-items: normal;
    gap: 32px;
    padding: 64px 0px 64px 64px;
  }

  .register-form-section .content .summary {
    gap: 16px;
    padding: 0px;
  }

  .register-form-section .summary h2 {
    font-size: 40px;
    font-weight: 400;
    line-height: 48px;
    text-align: left;
  }

  .register-form-section .summary p {
    width: 60%;
    font-size: 20px;
    font-weight: 300;
    line-height: 26px;
    text-align: left;
  }

  .register-form-section .register-form {
    width: 60%;
    padding: 0px;
  }

  .register-form-section .register-form .personal-data-agreement {
    order: 4;
  }

  .register-form-section .register-form .data-agreement-label {
    width: 260px;
    display: flex;
    flex-direction: column;
    font-family: Ubuntu;
    font-size: 16px;
    font-weight: 400;
    line-height: 20.8px;
  }

  .register-form-section .register-form .form {
    height: 135px;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 16px;
  }

  .register-form-section .inputs-wrapper {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 16px;
  }

  .register-form-section .register-form .form .customer-name {
    order: 1;
  }

  .register-form-section .register-form .form .customer-phone {
    order: 3;
  }

  .register-form-section .register-form .form .cta {
    order: 2;
    cursor: pointer;
  }

  .register-form-section .register-form input[type="text"],
  .register-form-section .register-form input[type="tel"] {
    max-width: 250px;
    border: 1px solid #5F6065;
  }

  .register-form-section .register-form button span {
    font-family: Ubuntu;
    font-size: 16px;
    font-weight: 400;
    line-height: 20.8px;
    text-align: left;
  }

  .register-form-section .content-image {
    display: none;
    max-width: 500px;
    height: 400px;
  }

  .register-form-section .content-image img {
    display: none;
    max-width: 500px;
    height: 100%;
  }
}
