body {
  font-family: 'Inter', sans-serif;
  background: #fafafa;
  margin: 0;
  padding: 40px;
  color: #333;
}

.header {
  text-align: center;
  margin-bottom: 40px;
}

.brand {
  font-size: 36px;
  font-weight: bold;
  background: linear-gradient(90deg, #ff8a00, #ff5e62);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitulo {
  color: #555;
  margin-top: 10px;
  font-size: 20px;  /* 👈 ajusta el tamaño acá */
  font-weight:800; /* opcional: lo mantiene fuerte */
}

.panel {
  display: flex;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  flex: 1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.card h2 {
  margin-top: 0;
  font-size: 20px;
  color: #ff6600;
}

label {
  display: block;
  margin: 15px 0 5px;
  font-weight: 600;
}

input, textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
}

button {
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  background: linear-gradient(90deg, #ff8a00, #ff5e62);
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
}

button:hover {
  opacity: 0.9;
}

.estado-item {
  background: #fdfdfd;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
  border: 1px solid #eee;
}

.estado-item h4 {
  margin: 0 0 8px;
  color: #212529;
  display: flex;
  align-items: center;
  justify-content: space-between;  /* 👈 título a la izq, icono a la der */
  font-size: 18px;
}
.estado-item p {
  margin: 3px 0;
  font-size: 14px;
  color: #555;
}

.estado-item .qr {
  max-width: 160px;
  margin-top: 10px;
}

.badge {
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: bold;
  color: white;
}

.badge.success { background: #28a745; }
.badge.warning { background: #ff9800; }
.badge.pending { background: #9e9e9e; }

@media screen and (max-width: 768px) {
  .panel { flex-direction: column; gap: 20px; }
}

.logo-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.icono {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff8a00, #ff5e62);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: bold;
  color: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.step {
  background: #ff6600;
  color: white;
  font-size: 16px;
  font-weight: bold;
  border-radius: 50%;
  padding: 4px 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
body {
  background: #fff7f2; /* fondo naranja suave */
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 100vh;
  padding-top: 80px
}

.login-card {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  max-width: 360px;
  width: 100%;
}
#login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px;
  background: #ff6f00;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

#login-btn:hover {
  background: #e65c00;
}

#login-btn img {
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 4px;
  padding: 2px;
}
.estado-logo {
  width: 22px;
  height: 22px;
  margin-left: 8px;
  vertical-align: middle;
}
/* === LOGIN STYLES === */
body.login-page {
  background: #fff7f2;
  font-family: 'Inter', sans-serif;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 100vh;
  padding-top: 80px;
  margin: 0;
}

.login-card {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  max-width: 380px;
  width: 100%;
}

.logo-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 10px;
}

.icono {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff8a00, #ff5e62);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: bold;
  color: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.brand {
  font-size: 36px;
  font-weight: bold;
  background: linear-gradient(90deg, #ff8a00, #ff5e62);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtexto {
  color: #555;
  margin-top: 5px;
  margin-bottom: 25px;
  font-size: 18px;
  font-weight: 600;
}

input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  margin-bottom: 15px;
  box-sizing: border-box;
}

#login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: linear-gradient(90deg, #ff8a00, #ff5e62);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

#login-btn:hover {
  opacity: 0.9;
}

#login-msg {
  margin-top: 15px;
  font-size: 14px;
}
