.registration-content-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
  gap: 80px;
  padding: 0 64px;
}

.registration-input-container {
  width: 360px;
  margin-top: 32px;
}

.registration-preview-img {
  max-width: 820px;
}

.registration-preview-img-wrapper {
  position: relative;
}

.registration-preview-text-company-name {
  position: absolute;
  left: 75px;
  top: 60px;
  color: #00292E;
  font-weight: 700;
  font-size: 16px;
}

.registration-preview-text-company-url {
  position: absolute;
  left: 110px;
  top: 24px;
  color: #00292E;
  font-size: 9px;
}

.registration-url-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  align-self: stretch;
}

.registration-url-suffix {
  color: #003E4B;
  font-size: 16px;
}

.registration-preview-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
}

.registration-button-container {
  position: fixed;
  z-index: 2;
  bottom: 80px;

  .button-style {
    margin: 0;
  }
}

.registration-arc-step-1 {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.registration-title--1 {
  color: #003E4B;
  font-size: 28px;
  text-align: left;
  line-height: 36px;
}

.registration-subtitle--1 {
  font-size: 18px;
  text-align: left;
  line-height: 28px;
}

.registration-title--2 {
  color: #003E4B;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.auth-step-2--registration {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}

.auth-step-3--registration {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0 auto;
  margin-top: 100px;
}

.auth-title-container--3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 48px;
  margin-bottom: 48px;
}

.registration-error-title {
  color: #003E4B;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

.registration-error-subtitle {
  color: #003E4B;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
}

.registration-error-button-container {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 48px;
}

.registration-error-button {
  width: 50%;
  display: block;
  margin: 0;
  margin-bottom: 8px;
}

.auth-form--registration-step-1 {
  width: 1260px;
  padding-bottom: 120px;
}

@media screen and (max-width: 1300px) {
  .registration-button-container {
    padding: 0 16px;
  }

  .registration-preview-img {
    max-width: 750px;
  }
}

@media screen and (max-width: 1200px) {
  .registration-preview-img {
    max-width: 720px;
  }

  .auth-step-2--registration {
    height: calc(100vh - 78px);
    justify-content: center;
  }

  .auth-form--registration-step-1 {
    width: 100%;
  }
}

@media screen and (max-width: 1150px) {
  .registration-preview-container {
    display: none;
  }

  .registration-input-container {
    width: 100%;
  }
}

@media screen and (max-width: 900px) {
  .registration-content-container {
    padding: 0 16px;
    justify-content: center;
  }

  .registration-preview-container {
    display: none;
  }

  .registration-input-container {
    width: 100%;
    margin: 0;
  }

  .registration-button-container {
    flex-direction: column-reverse;
    gap: 16px;
    padding: 16px;
    margin: 0;
    bottom: 0;

    .button-style {
      width: 100%;
    }
  }

  .registration-arc-step-1 {
    display: none;
  }

  .registration-title--1 {
    font-size: 28px;
    line-height: 36px;
    text-align: center;
    margin-bottom: 8px;
  }

  .registration-subtitle--1 {
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    margin: 0;
  }

  .registration-title--2 {
    font-size: 28px;
  }

  .auth-step-3--registration {
    max-width: 100%;
    margin-top: 0;
    padding: 16px;
  }

  .auth-title-container--3 {
    gap: 32px;
    margin-bottom: 32px;
  }

  .registration-error-title {
    font-size: 18px;
  }

  .registration-error-subtitle {
    font-size: 18px;
  }

  .registration-error-button-container {
    position: fixed;
    z-index: 2;
    bottom: 0;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
  }

  .registration-error-button {
    width: 100%;
  }

  .auth-form--registration-step-1 {
    padding-bottom: 40px;
  }
}