body.auth-page {
  background: #000000;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-family: Arial, sans-serif;
}

.auth-page .container {
  background: transparent;
  width: 100%;
  max-width: 380px;
  padding: 24px 20px;
  border-radius: 0;
  box-shadow: none;
}

.auth-page .container h2 {
  text-align: center;
  margin-bottom: 16px;
  font-size: 1.4rem;
  color: #ffffff;
}

.auth-page label {
  font-size: 0.85rem;
  color: #ffffff;
}

.auth-page input {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 14px;
  margin-top: 6px;
  margin-bottom: 18px;
  border-radius: 12px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.auth-page input:focus {
  outline: none;
  border-color: #111;
}

.auth-page button[type="submit"] {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #ffffff;
  background: #000000;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.auth-page button[type="submit"]:active {
  transform: scale(0.98);
}

.login-page button[type="submit"] {
  color: #22c55e;
}

.register-page button[type="submit"] {
  color: #22c55e;
}

.auth-page .container p {
  text-align: center;
  font-size: 0.85rem;
  margin-top: 18px;
  color: #ffffff;
}

.auth-page .container a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
}

.auth-page.register-page .container p.marca-id-preview {
  display: block;
  margin: 2px 0 10px 0;
  font-size: 0.82rem;
  color: #ffffff;
  text-align: left;
  width: 100%;
}

.register-page .marca-existe-badge {
  margin-left: 8px;
  font-weight: 700;
}

.dashboard-page #user-email {
  text-align: center;
  font-size: 0.85rem;
  margin-bottom: 18px;
  color: #d2d2d2;
}

.dashboard-page .marca-nombre {
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  margin-top: -6px;
  margin-bottom: 12px;
}

.dashboard-page .menu-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 14px 0;
}

.dashboard-page .menu-btn {
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #ffffff;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
}

.dashboard-page .menu-btn-primary {
  background: #000000;
  color: #fff;
}

.dashboard-page .menu-btn-secondary {
  background: #000000;
  color: #ff4d4f;
}

@media (max-width: 480px) {
  .auth-page .container {
    max-width: 100%;
    padding: 20px 14px;
  }

  /* Evita zoom automático al enfocar inputs en móvil */
  .auth-page input,
  .auth-page select,
  .auth-page textarea {
    font-size: 16px;
  }
}
