.signIn-photo {
  flex: 0 0 clamp(0px, 56.8%, 1000px);
  width: 100%;
  aspect-ratio: 704 / 552;
  border-radius: 16px;
  overflow: hidden;
}

.signUp-photo {
  flex: 0 0 clamp(0px, 52.7%, 1000px);
  width: 100%;
  aspect-ratio: 653 / 552;
  border-radius: 16px;
  overflow: hidden;
}

.signUp-photo img,
.signIn-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 1023px) {
  .signIn-photo {
    aspect-ratio: 704 / 450;
  }

  .signUp-photo {
    aspect-ratio: 653 / 450;
  }
}

@media (max-width: 576px) {
  .signIn-photo {
    aspect-ratio: 704 / 704;
  }

  .signUp-photo {
    aspect-ratio: 653 / 753;
  }
}
.cta-primary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    border: none;
    font-weight: 500;
    color: #fff;
    font-size: 14px;
    height: 50px;
    width: 214px;
    background: linear-gradient(150deg, #040815 0%, #1a1532 40%, #603d8d 140%);
    text-transform: uppercase;
    cursor: pointer;
    transition: background 200ms ease;
}
body {
    background-color: #f1f1f1;
}