.login-pf body {
  background: #f5f5f5;
  background-size: cover;
  height: 100%;
  font-family: Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.2px;
}

#kc-header-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;

  margin-top: 80px;
  margin-bottom: 40px;

  font-family: Roboto;
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: #3b3b3b;
}

#kc-header-logo {
  background: #2362a2;
  height: 64px;
  width: 64px;
  border-radius: 3px;
  padding: 8px;
}

#kc-page-title {
  text-align: center;

  font-family: Roboto;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: #3b3b3b;
}

.card-pf {
  margin: 0 auto;
  padding: 40px;
  max-width: 400px;
  box-shadow: 0 0;
  background: white;
  border-radius: 3px;
}

.kc-social-links {
  padding: 0;
}

#kc-form-login {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.pf-c-form__label {
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: #686868;
}

.pf-c-form-control {
  border-radius: 3px;
  border: 1px solid #a8a8a8;
  background: white;
  width: calc(100% - 34px);

  font-size: 16px;
  display: flex;
  padding: 13px 16px;
  align-items: center;
  align-self: stretch;
}

.pf-c-password {
  position: relative;

  #toggle {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    cursor: pointer;
    height: 16px;

    img {
      width: 16px;
      height: 16px;
    }
  }
}

.pf-c-button {
  border-radius: 3px;
  background: #2362a2;
  color: white;

  display: flex;
  padding: 12px 20px 13px 20px;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;

  border: 0;
  font-size: 14px;
  font-weight: 700;

  cursor: pointer;
  transition: all cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-duration: 300ms;

  &:hover {
    background: #254e80;
  }
}

@media (max-width: 767px) {
  #kc-header-wrapper {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 20px;
  }

  #kc-header-logo {
    height: 48px;
    width: 48px;
    padding: 4px;
  }

  #kc-page-title {
    font-size: 22px;
  }

  .login-pf-page .card-pf {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    border-top: 0;
    box-shadow: 0 0;
  }
}
