/* ============================================
   AUTH PAGE ENHANCEMENTS (Black & White Theme)
   ============================================ */

.auth-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 1rem;
  min-height: 80vh;
  background: #fff;
}

.auth-container {
  background: #000;
  color: #fff;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.auth-container h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  color: #fff;
}

.auth-container form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.auth-container input {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  background: #fff;
  color: #000;
  font-size: 0.95rem;
  transition: 0.2s ease;
}

.auth-container input:focus {
  outline: none;
  border-color: #000;
  box-shadow: 0 0 0 2px rgba(0,0,0,0.2);
}

.auth-container .btn-login {
  padding: 0.9rem;
  background: #fff;
  color: #000;
  border: none;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s;
}

.auth-container .btn-login:hover {
  background: #222;
  color: #fff;
  transform: translateY(-2px);
}

.auth-container p {
  text-align: center;
  font-size: 0.9rem;
}

.auth-container a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}

.form-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #000;
}

.hidden {
  display: none !important;
}

/* Technician Extra Fields */
#technician-fields input {
  background: #f9f9f9;
  color: #000;
  border: 1px solid #ccc;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
  .auth-container {
    max-width: 95%;
    padding: 1.8rem 1rem;
  }

  .auth-container h2 {
    font-size: 1.4rem;
  }
}

/* ============================================
   NAVBAR & TOGGLE FIXES
   ============================================ */

.navbar ul {
  list-style: none;
  display: flex;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
}

.navbar ul li a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.navbar ul li a:hover,
.navbar ul li a.active {
  color: #888;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: #000;
}

@media (max-width: 768px) {
  .navbar {
    display: none;
    background: #000;
    position: absolute;
    top: 70px;
    right: 10px;
    padding: 1rem;
    border-radius: 8px;
  }

  .navbar.active {
    display: block;
  }

  .navbar ul {
    flex-direction: column;
    gap: 0.8rem;
  }

  .navbar ul li a {
    color: #fff;
  }

  .menu-toggle {
    display: block;
  }
}
