/* Auth (login + register) shared styles */
.auth-wrap {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.auth-left {
  background: linear-gradient(160deg, var(--black) 0%, #2a0a10 100%);
  color: #fff;
  display: flex;
  align-items: center;
  padding: 50px;
}
.auth-left-inner { max-width: 460px; }
.auth-left .brand { margin-bottom: 40px; }
.auth-left h1 { font-size: 38px; line-height: 1.2; margin-bottom: 16px; }
.auth-left p { color: var(--gray-300); font-size: 16px; margin-bottom: 28px; }
.auth-features { list-style: none; }
.auth-features li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: rgba(255,255,255,0.9);
}
.auth-features li::before {
  content: "✓";
  color: var(--red);
  font-weight: 700;
  position: absolute;
  left: 0;
}

.auth-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: var(--white);
}
.auth-card {
  width: 100%;
  max-width: 400px;
}
.auth-card h2 { font-size: 28px; margin-bottom: 6px; }
.auth-sub { color: var(--gray-500); margin-bottom: 28px; }
.error-box {
  color: var(--red);
  font-size: 14px;
  min-height: 20px;
  margin-bottom: 12px;
  font-weight: 600;
}
.auth-switch {
  text-align: center;
  margin-top: 18px;
  color: var(--gray-700);
  font-size: 14px;
}
.role-pick {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 8px;
}
.role-option {
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}
.role-option.selected {
  border-color: var(--red);
  background: var(--red-light);
}
.role-option strong { display: block; font-size: 15px; }
.role-option small { color: var(--gray-500); }

@media (max-width: 768px) {
  .auth-wrap { grid-template-columns: 1fr; }
  .auth-left { display: none; }
}
