/* ── Authentication Split Screen ── */
.auth-container {
  display: flex;
  min-height: 100vh;
  width: 100%;
}

.auth-sidebar {
  flex: 1.2;
  background: linear-gradient(135deg, oklch(0.24 0.09 265), oklch(0.16 0.05 265));
  color: #fff;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

@media (max-width: 992px) {
  .auth-sidebar {
    display: none;
  }
}

.auth-sidebar::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.15) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.auth-sidebar::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.auth-sidebar-header {
  position: relative;
  z-index: 10;
}

.auth-sidebar-body {
  position: relative;
  z-index: 10;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.auth-tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
}

.auth-sidebar-title {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
}

.auth-sidebar-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* Recruitment Promotion Block */
.recruitment-banner {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 1.5rem;
  border-radius: var(--radius);
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.recruitment-title-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.recruitment-btn {
  width: 100%;
  padding: 0.75rem;
  background-color: var(--success);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.recruitment-btn:hover {
  background-color: oklch(0.58 0.15 150);
}

.auth-form-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  background-color: var(--background);
}

.auth-form {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.auth-form-logo {
  display: none;
}

@media (max-width: 992px) {
  .auth-form-logo {
    display: flex;
    margin-bottom: 1.5rem;
  }
}

.auth-form-header {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.auth-form-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--foreground);
}

.auth-form-subtitle {
  font-size: 0.85rem;
  color: var(--muted-foreground);
}

.auth-fields {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.auth-field-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.auth-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
}

.auth-input-wrapper {
  height: 46px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background-color: var(--card);
  display: flex;
  align-items: center;
  padding: 0 1rem;
  gap: 0.75rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-input-wrapper:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--input);
}

.auth-input-wrapper svg {
  width: 16px;
  height: 16px;
  color: var(--muted-foreground);
}

.auth-input-wrapper input, .auth-input-wrapper select {
  flex: 1;
  border: none;
  background: none;
  outline: none;
  font-size: 0.85rem;
  color: var(--foreground);
  width: 100%;
}

.auth-submit-btn {
  height: 46px;
  background: linear-gradient(135deg, oklch(0.82 0.15 80), oklch(0.7 0.16 60));
  color: var(--gold-foreground);
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(217, 119, 6, 0.15);
  transition: all 0.2s ease;
}

.auth-submit-btn:hover {
  box-shadow: 0 6px 12px rgba(217, 119, 6, 0.25);
  transform: translateY(-1px);
}

/* Quick credentials auth methods grid */
.auth-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.auth-method-btn {
  height: 40px;
  border: 1px solid var(--border);
  background-color: var(--card);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--foreground);
  cursor: pointer;
}

.auth-method-btn:hover {
  background-color: var(--muted);
}

.auth-method-btn svg {
  width: 14px;
  height: 14px;
}
