body {
  font-family: Poppins, sans-serif;

  --main-color: #4E85FD;
  --secondary-color: #F8F736;

}

* {
  box-sizing: border-box;
}

.container {
  display: flex;
  position: relative;
  height: 100%;

  & > div {
    width: 50%;
    flex-grow: 0;
    flex-shrink: 0;

  }
}

.side {
  background: #4E85FD;
}

.main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 44px;

  .eyebrow {
    color: var(--main-color);
    font-weight: 700;
    text-transform: uppercase;
  }

  .title {
    font-size: 58px;
    font-weight: 900;
    line-height: 66px;
  }

  .sub-title {
    font-size: 20px;
    line-height: 28.6px;
    color: #374151;
  }

  .header {
    position: absolute;
    top: 20px;
    color: #161A23;

    font-size: 15px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    letter-spacing: 0.55px;
    display: flex;
    align-items: center;

    &:before {
      content: '';
      display: inline-block;
      width: 20px;
      height: 20px;
      background-image: url('/img/Square.svg');
      margin-right: 4px;
    }

  }

  .content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 552px;
  }
}