@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");

:root {
  font-size: 14px;
  --pf-global--BackgroundColor--light-100: #fff;
  --pf-c-button--m-primary--BackgroundColor: #36383a;
  --pf-global--primary-color--100: #36383a;
  --pf-global--primary-color--200: #f2a92e;

  --primary-color: #2C4D80;
  --secondary-color: #FFD95F;
  --tertiary-color: #6A26FB;
}

.login-pf {
  background: none;
  height: 100%;
  width: 100%;
}

.login-pf body {
  background: #e4e4e4;
  font-family: Roboto;
  height: 100%;
  margin: 0;
}

#kc-header {
  justify-content: space-between;
}

#kc-header-title {
  font-family: 'Harabara', sans-serif;
  color: var(--primary-color);
  font-size: 100px;
  line-height: normal;
}

#kc-header-description {
  font-family: 'Harabara', sans-serif;
  color: var(--primary-color);
  font-size: 25px;
  line-height: normal;
}

.kc-social-buttons-warpper {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}

.kc-hearder-logos {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}

.kc-hearder-logos > img {
  width: 50px;
  height: 50px;
  background-color: var(--pf-global--BackgroundColor--light-100);
  border-radius: 50%;
}

.social-buttons {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid black;
  border-radius: 50%;
  color: var(--pf-global--BackgroundColor--light-100);
  background-color: var(--primary-color);

  .fa {
    font-size: 16px;
  }

  &:focus, &:hover {
    text-decoration: none !important;
    color: var(--pf-global--BackgroundColor--light-100) !important;
  }
}

.kc-line {
  height: 60px;
  margin-bottom: 10px;
}

#kc-social-providers > h4 {
  text-align: center;
}

#kc-header-wrapper {
  display: none;
}

.login-pf-page {
  padding: 50px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  height: 100%;
}

.login-pf-page-header {
  height: 100%;
  flex: 0 0 35em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  background-color: var(--secondary-color);
}

.card-pf {
  border-top: 0;
  margin: 0;
  flex: 0 0 35em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
}

.login-pf-page .login-pf-header h1 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2rem;
  text-align: left;
}

input[type="text"],
input[type="password"],
select {
  height: 48px;
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

input[type="submit"] {
  width: 100%;
  background-color: #4caf50;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#kc-form-options .checkbox {
  padding: 0;
  margin: 0;
}

.pf-c-form__label {
  font-weight: bolder;
}

.pf-c-button,
.pf-c-button.pf-m-primary {
  color: var(--pf-global--BackgroundColor--light-100);
  background-color: var(--primary-color);
}

.pf-m-error {
  color: #ff0000 !important;
}

@media (max-width: 750px) {
  .kc-line {
    display: none;
  } 

  #kc-header-title {
    font-size: 65px;
  }

  .login-pf body {
    background-color: #fff;
  }

  .login-pf-page {
    flex-direction: column;
    justify-content: flex-start;
  }

  .login-pf-page-header {
    border-radius: 25px;
    flex: 0 0 15em;
    height: auto;
  }

  .card-pf {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
  }
}