/* Standalone dark split-screen theme for login / password-reset pages.
   Deliberately separate from the light hr-* app theme — this always renders dark,
   regardless of the staff app's light/dark mode preference. */

.hr-auth2-body {
  margin: 0;
  font-family: var(--hr-font);
  background: #0a0d14;
  color: #e7eaf3;
  min-height: 100vh;
}

.hr-auth2-shell {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  min-height: 100vh;
  border-top: 3px solid var(--brand-lime);
}

.hr-auth2-panel-left {
  position: relative;
  padding: 3rem 3.5rem;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 15% 15%, rgba(141, 198, 63, .12), transparent 45%),
    radial-gradient(circle at 85% 85%, rgba(15, 31, 77, .55), transparent 55%),
    #0a0d14;
  border-right: 1px solid rgba(255, 255, 255, .08);
}

.hr-auth2-panel-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2.5rem;
  background: #0b0e16;
}

.hr-auth2-content { width: 100%; max-width: 380px; }

.hr-auth2-brand { display: flex; align-items: center; gap: .65rem; margin-bottom: 3rem; }
.hr-auth2-logo { width: 40px; height: 40px; border-radius: 10px; background: var(--brand-lime); display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; }
.hr-auth2-logo img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.hr-auth2-brand-name { font-size: 1.05rem; font-weight: 800; letter-spacing: .04em; color: #fff; }

.hr-auth2-tag { display: flex; align-items: center; gap: .6rem; font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--brand-lime); margin-bottom: 1.1rem; }
.hr-auth2-tag-line { width: 28px; height: 1.5px; background: var(--brand-lime); display: inline-block; }

.hr-auth2-headline { font-size: 3.1rem; line-height: 1.02; font-weight: 800; letter-spacing: -.01em; margin: 0 0 1.25rem; color: #fff; text-transform: uppercase; }
.hr-auth2-headline .accent { color: var(--brand-lime); }

.hr-auth2-lede { font-size: .92rem; line-height: 1.6; color: #9aa4b8; max-width: 420px; margin: 0 0 1.75rem; }

.hr-auth2-pills { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: auto; }
.hr-auth2-pills span { font-size: .74rem; font-weight: 600; color: #c3cadb; border: 1px solid rgba(255, 255, 255, .14); border-radius: 100px; padding: .4rem .85rem; }

.hr-auth2-footer { font-size: .74rem; color: #5c6579; margin-top: 2.5rem; }

.hr-auth2-h1 { font-size: 1.55rem; font-weight: 700; color: #fff; margin: 0 0 .35rem; }
.hr-auth2-sub { font-size: .85rem; color: #8a93a8; margin: 0 0 2rem; }

.hr-auth2-field { margin-bottom: 1.15rem; }
.hr-auth2-field-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: .4rem; }
.hr-auth2-label { font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #8a93a8; }
.hr-auth2-link { font-size: .78rem; font-weight: 600; color: var(--brand-lime); text-decoration: none; }
.hr-auth2-link:hover { text-decoration: underline; }

.hr-auth2-input-wrap { position: relative; }
.hr-auth2-input {
  display: block; width: 100%; box-sizing: border-box;
  background: #12151f; border: 1.5px solid rgba(255, 255, 255, .1); border-radius: 10px;
  color: #fff; font-family: var(--hr-font); font-size: .875rem;
  padding: .75rem .95rem;
  outline: none; transition: border-color .18s, box-shadow .18s;
}
.hr-auth2-input::placeholder { color: #565f74; font-weight: 300; }
.hr-auth2-input:focus { border-color: var(--brand-lime); box-shadow: 0 0 0 3px rgba(141, 198, 63, .18); }
.hr-auth2-input-wrap.has-toggle .hr-auth2-input { padding-right: 2.6rem; }
.hr-auth2-toggle {
  position: absolute; right: .85rem; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: #8a93a8; cursor: pointer; padding: .25rem; font-size: .85rem;
}
.hr-auth2-toggle:hover { color: #fff; }

.hr-auth2-btn {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  width: 100%; border: none; border-radius: 10px; padding: .8rem 1rem;
  font-family: var(--hr-font); font-size: .875rem; font-weight: 700; letter-spacing: .02em;
  color: var(--brand-navy-dark); cursor: pointer; text-decoration: none;
  background: linear-gradient(135deg, var(--brand-lime) 0%, #a9dc63 100%);
  transition: transform .15s, box-shadow .15s;
  margin-top: .35rem;
}
.hr-auth2-btn:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(141, 198, 63, .28); color: var(--brand-navy-dark); }

.hr-auth2-error {
  background: rgba(248, 113, 113, .1); border: 1px solid rgba(248, 113, 113, .3); color: #fca5a5;
  border-radius: 10px; padding: .65rem .85rem; font-size: .8rem; margin-bottom: 1.1rem;
}
.hr-auth2-hint { font-size: .78rem; color: #8a93a8; line-height: 1.6; margin: -.4rem 0 1.15rem; }

.hr-auth2-divider { display: flex; align-items: center; gap: .75rem; margin: 1.75rem 0 1.1rem; }
.hr-auth2-divider::before, .hr-auth2-divider::after { content: ''; flex: 1; height: 1px; background: rgba(255, 255, 255, .1); }
.hr-auth2-divider span { font-size: .64rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #5c6579; white-space: nowrap; }

.hr-auth2-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem; }
.hr-auth2-stat { background: #12151f; border: 1px solid rgba(255, 255, 255, .08); border-radius: 10px; padding: .75rem .5rem; text-align: center; }
.hr-auth2-stat-value { font-size: 1.05rem; font-weight: 800; color: var(--brand-lime); }
.hr-auth2-stat-label { font-size: .6rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: #8a93a8; margin-top: .15rem; }

.hr-auth2-icon-badge {
  width: 56px; height: 56px; border-radius: 16px; background: rgba(141, 198, 63, .12);
  color: var(--brand-lime); display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.25rem;
}

.hr-auth2-back { display: inline-flex; align-items: center; gap: .4rem; font-size: .8rem; color: #8a93a8; text-decoration: none; margin-top: 1.5rem; }
.hr-auth2-back:hover { color: #fff; }

@media (max-width: 900px) {
  .hr-auth2-shell { grid-template-columns: 1fr; }
  .hr-auth2-panel-left { display: none; }
  .hr-auth2-panel-right { padding: 2.5rem 1.5rem; }
}
