.signup-form-header {
  display: flex;
  flex-flow: column;
  align-items: center;
  background: var(--gray-50);
  border-radius: 8px;
  min-height: 272px;
}

.signup-form-header-content {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1280px;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.signup-form-header-robot {
  position: absolute;
  bottom: 0;
  /* half of image width */
  left: 0;
}

.signup-form-header-robot-inverted-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  overflow: hidden;
}

.signup-form-header-robot-inverted {
  rotate: 225deg;
  transform: translate(16%, 16%)
}

@media (max-width: 600px) {
  .signup-form-header-robot {
    width: 32vw;
  }
}

@media (max-width: 800px) {
  .signup-form-header-robot-inverted {
    display: none;
  }
}

.signup-form-header-arrow {
  position: absolute;
  bottom: -50px;
  left: calc(50% - 50px);
}

.signup-form-header-text {
  display: flex;
  flex-flow: column;
  gap: 16px;
  padding: 16px 16px 128px 16px;
  max-width: 450px;
  white-space: break-spaces;
  word-break: break-word;
}

.signup-form-header-text h2 {
  color: var(--signup-header-title);
}

.signup-form-header-text p {
  color: var(--signup-header-text);
}

@media (min-width: 600px) {
  .signup-form-header-text {
    padding: 24px 24px 48px 24px;
  }
}
