/* Reconstructed from the real oneid.hoisthospitality.com stylesheets:
   base Keycloak login.css + the "hoist" brand override (hoist.css).
   Font file (PlusJakartaSans .woff2) not available to us, so it's loaded
   from Google Fonts instead — same family, same visual result. */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

html, body {
  height: 100%;
  margin: 0;
}
body {
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a, a:hover, a:active {
  color: #4F46E5;
  text-decoration: none;
}
a:hover {
  color: #0099d3;
}

/* --- planet-wrapper / orb background, values from hoist.css --- */
.planet-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  position: relative;
}

.background-container {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  background-color: #000;
}

.orb {
  position: absolute;
  width: 70vw;
  height: 70vw;
  max-width: 90vh;
  max-height: 90vh;
  transform: translate(0, 0) scale(1);
  filter: blur(100px);
}
.orb-one {
  top: 50%;
  left: 70%;
  background: radial-gradient(circle at center, #e00083, transparent 60%);
  animation: orb-one 16s linear infinite;
}
.orb-two {
  bottom: 60%;
  right: 70%;
  background: radial-gradient(circle at center, #9AAEF9, transparent 60%);
  animation: orb-two 16s linear infinite;
}
@keyframes orb-one {
  0%   { transform: translate(0, 0) scale(1); }
  25%  { transform: translate(-5vw, -5vh) scale(1.1); }
  50%  { transform: translate(-10vw, 0) scale(1); }
  75%  { transform: translate(-5vw, 5vh) scale(0.9); }
  100% { transform: translate(0, 0) scale(1); }
}
@keyframes orb-two {
  0%   { transform: translate(0, 0) scale(1); }
  25%  { transform: translate(5vw, -5vh) scale(1.1); }
  50%  { transform: translate(10vw, 0) scale(1); }
  75%  { transform: translate(5vw, 5vh) scale(0.9); }
  100% { transform: translate(0, 0) scale(1); }
}

.planet-container {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}

.login-pf-page {
  width: 100%;
  max-width: 500px;
  padding: 0 20px;
  box-sizing: border-box;
}

/* --- card, values from login.css .card-pf + hoist.css override --- */
.card-pf {
  background-color: #fff;
  border: none;
  box-shadow: none;
  margin: 0 auto;
  padding: 0;
  max-width: 500px;
}
.hoist-header {
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  padding: 10px 20px 0;
}
.hoist-footer {
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  padding: 0 20px 30px;
}
@media (min-width: 768px) {
  .hoist-header { padding: 20px 40px 0; }
  .hoist-footer { padding: 0 40px 30px; }
}

/* --- logo: real site uses a background-image wordmark SVG we don't have,
   so an inline icon + text stand-in is used, sized to the same 80px box --- */
#kc-header-wrapper {
  font-size: 29px;
  text-transform: uppercase;
  padding: 0;
}
.kc-logo-text {
  height: 80px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.kc-logo-text .wordmark {
  font-size: 32px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: -0.5px;
  color: #111;
  line-height: 1;
}
.kc-logo-text img {
  height: 18px;
  width: 18px;
  margin-left: 2px;
  margin-top: -4px;
}
@media (max-width: 767px) {
  .kc-logo-text { margin: auto; }
}

.login-pf-header { text-align: center; }
#kc-page-title {
  font-size: 24px;
  font-weight: 500;
  color: #1a1a1a;
  margin: 0 0 20px;
  white-space: pre-line;
}

#kc-content-wrapper { margin-top: 20px; }
#kc-form-wrapper { margin-top: 10px; }

.form-group { margin-top: 16px; }
.form-group:first-child { margin-top: 0; }
.pf-c-form__label-text {
  display: block;
  font-size: 13px;
  color: #444;
  margin-bottom: 6px;
}
.pf-c-form-control {
  width: 100%;
  height: 36px;
  padding: 8px 12px;
  border: 1px solid #d2d2d2;
  border-radius: 6px;
  box-sizing: border-box;
  font-size: 14px;
  font-family: inherit;
  color: #111;
}
.pf-c-form-control:focus {
  outline: none;
  border-color: #4F46E5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
}
.pf-c-input-group {
  position: relative;
  display: flex;
}
.pf-c-input-group .pf-c-form-control { padding-right: 40px; }
.pf-c-input-group .pf-c-button {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
  padding: 4px;
}

.login-pf-settings {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 12px;
}
.login-pf-settings a { font-size: 13px; }

/* --- button, values from hoist.css .planet-primary --- */
#kc-form-buttons { margin-top: 20px; }
.pf-c-button.planet-primary {
  background-color: #4F46E5;
  color: #fff;
  height: 52px;
  border-radius: 8px;
  padding: 16px 8px;
  border: none;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  box-sizing: border-box;
}
.pf-c-button.planet-primary.pf-m-block { width: 100%; }
.pf-c-button.planet-primary:hover { background-color: #4338ca; }

/* --- info box, values from login.css #kc-info / #kc-info-wrapper --- */
#kc-info {
  margin: 20px -40px -30px;
}
#kc-info-wrapper {
  font-size: 13px;
  padding: 15px 35px;
  background-color: #F0F0F0;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  color: #666;
  text-align: center;
  line-height: 1.5;
}
