body {
  font-family: 'Roboto', sans-serif;
}

.logo {
    text-align: center;
    width: 100%;
    margin-top: 48px;
}

.wisp {
    max-width: 920px;
    width: 100%;
}

.title {
    font-size: 64px;
    color: white;
    max-width: 500px;
    margin-left: 64px;
    margin-bottom: 80px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 800;
}

.authentication-wrapper {
    min-height: 100vh;
    display: flex;
    background-color: white;
}

.authentication-content {
    background: url('/img/login-bg.jpg') no-repeat left bottom;
    background-size: cover;
    padding-right: 12px;
    width: 50%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.authentication-form {
    height: 100%;
    width: 50%;
    min-height: 100vh;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.authentication-form_fields {
    padding: 0 80px;
    max-width: 525px;
    width: 100%;
    flex: 1;
    display: flex;
    align-items: center;
}

.authentication-form_fields > div{
    width: 100%;
}

.authentication-form_links {
    display: flex;
    justify-content: space-between;
    max-width: 525px;
    width: 100%;
}

.authentication-form_links a {
    text-decoration: underline;
    color: #51558A;
}

.authentication-form_links a, .authentication-form_links svg {
    color: #797EA7;
}

@media screen and (max-width: 599px) {
  .authentication-form_fields {
    padding: 0;
  }

  .authentication-form_links {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
}

@media screen and (max-width: 991px) {
  .authentication-content {
    display: none;
  }
  .authentication-form {
    width: 100%
  }
}

@media screen and (max-width: 1199px) {
  .title {
    font-size: 48px
  }
  .authentication-form_fields {
    padding: 0;
  }
  .authentication-form_links {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
}
