.auth-page {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  width: 100vw;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #000;
  padding: 28vh 0 40px;
  box-sizing: border-box;
}

.auth-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.auth-fader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 64px 72px;
  z-index: 1;
  pointer-events: none;
}

.auth-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 640px;
  text-align: center;
}

.auth-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--auth-badge-bg, rgba(43, 127, 255, 0.3));
  border: 2px solid var(--auth-badge-border, rgba(43, 127, 255, 0.3));
  border-radius: 50px;
}

.auth-badge img {
  width: 14px;
  height: 14px;
}

.auth-badge span {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  color: var(--auth-badge-text, #FFFFFF);
  margin-top: 2px;
}

.auth-heading {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 60px;
  color: var(--auth-heading-color, #FFFFFF);
  margin: 0;
}

.auth-subtext {
  font-family: 'Nunito', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: var(--auth-subtext-color, #CAD5E2);
  margin: 0;
}

.auth-card {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px;
  gap: 40px;
  width: 440px;
  margin-bottom: auto;
  background: #FFFFFF;
  box-shadow: 0px 6px 10px 4px rgba(0, 0, 0, 0.15), 0px 2px 3px rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  box-sizing: border-box;
}

.auth-card-logo {
  height: 48px;
}

.auth-card-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  color: #26282D;
  margin: 0;
  text-align: center;
  padding-top: 48px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.auth-input-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.auth-password-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.auth-remember-row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
.auth-remember-row .form-check-label {
  font-family: 'Nunito', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #26282D;
}

.auth-submit-btn {
  width: 100%;
  height: 40px;
  background: #26282D;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  font-family: 'Nunito', sans-serif;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3), 0px 2px 6px 2px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.auth-submit-btn:hover {
  background: #3F4144;
}

.auth-page .alert-error {
  width: 100%;
  margin-bottom: 24px;
  border-radius: 6px;
  border: none;
  padding: 8px 16px;
  background: var(--errorlighter);
  font-size: 14px;
  font-weight: 600;
  color: var(--errorDark);
  text-align: left;
  line-height: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}