/* Basic styles for La Bodega Online */
body {
  margin: 0;
  padding: 0;
  background: #f7f7f7;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
}

.black-bar {
  background: #000;
  padding: 18px 12px;
  box-sizing: border-box;
}

.black-bar h1 {
  color: #fff;
  margin: 0;
  text-align: center;
  font-size: 28px;
  letter-spacing: 1px;
}

.login-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 72px);
  padding: 24px;
}

.login-box {
  width: 100%;
  max-width: 420px;
  background: #fff;
  padding: 36px;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.login-box h2 {
  margin: 0 0 18px 0;
  text-align: center;
}

.form-group { margin-bottom: 14px; }
.form-group label { display:block; margin-bottom:6px; font-weight:600; }
.form-group input { width:100%; padding:10px; border:1px solid #ddd; border-radius:6px; }
.form-group input:focus { outline:none; border-color:#b3b3b3; }

.login-button { width:100%; padding:12px; background:#000; color:#fff; border-radius:6px; border:none; cursor:pointer; font-weight:700; }
.login-button:hover { opacity:0.95 }

.signup-link { text-align:center; margin-top:16px; color:#666 }
.signup-link a { color:#111; font-weight:700; text-decoration:none }

/* Dashboard */
.dashboard-container { display:flex; align-items:center; justify-content:center; min-height:calc(100vh - 72px); }
.dashboard-content { text-align:center; background:#fff; padding:36px; border-radius:8px; box-shadow:0 6px 18px rgba(0,0,0,0.06); max-width:640px }

