/* ===== AUTH PAGE ===== */
.auth-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.auth-left {
  background: linear-gradient(135deg, var(--secondary) 0%, #2d2d4e 50%, var(--primary-dark) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.auth-left::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(200,16,46,0.15);
  border-radius: 50%;
  top: -100px;
  right: -100px;
}
.auth-left::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  bottom: -80px;
  left: -80px;
}
.auth-brand { text-align: center; position: relative; z-index: 1; }
.auth-brand .logo-icon { width: 80px; height: 80px; font-size: 40px; margin: 0 auto 20px; }
.auth-brand h1 { font-family: 'Playfair Display', serif; font-size: 42px; margin-bottom: 10px; }
.auth-brand p { font-size: 15px; opacity: 0.8; margin-bottom: 40px; }
.auth-features { width: 100%; max-width: 320px; position: relative; z-index: 1; }
.auth-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 15px 20px;
  margin-bottom: 12px;
  backdrop-filter: blur(10px);
}
.auth-feature span:first-child { font-size: 24px; }
.auth-feature div h4 { font-size: 14px; font-weight: 600; }
.auth-feature div p { font-size: 12px; opacity: 0.7; }

.auth-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  background: #fff;
  overflow-y: auto;
}
.auth-form-container { width: 100%; max-width: 420px; }
.auth-tabs {
  display: flex;
  background: var(--light-gray);
  border-radius: 50px;
  padding: 5px;
  margin-bottom: 35px;
}
.auth-tab {
  flex: 1;
  padding: 10px;
  border: none;
  background: transparent;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  color: var(--gray);
}
.auth-tab.active { background: #fff; color: var(--primary); box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.auth-form { display: none; }
.auth-form.active { display: block; }
.auth-form h2 { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--secondary); margin-bottom: 5px; }
.auth-form p { color: var(--gray); font-size: 14px; margin-bottom: 25px; }

.divider {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 20px 0;
  color: var(--gray);
  font-size: 13px;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--light-gray);
}

.btn-google {
  width: 100%;
  padding: 12px;
  background: #fff;
  border: 2px solid var(--light-gray);
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
  color: var(--secondary);
}
.btn-google:hover { border-color: var(--primary); background: rgba(200,16,46,0.03); }
.btn-google img { width: 20px; }

.password-field { position: relative; }
.password-toggle {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: var(--gray);
}
.forgot-link {
  display: block;
  text-align: right;
  font-size: 13px;
  color: var(--primary);
  margin-top: -10px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .auth-page { grid-template-columns: 1fr; }
  .auth-left { display: none; }
  .auth-right { padding: 40px 25px; }
}
