/* ── Tracklink Postventa – Form CSS ── */
.tlpv-form-container {
  max-width: 500px;
  margin: 0 auto;
  padding: 30px;
  font-family: 'Montserrat', 'Arial', sans-serif;
}
.tlpv-form-group {
  margin-bottom: 20px;
}
.tlpv-form-control {
  width: 100%;
  padding: 12px 15px;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  color: white !important;
  background-color: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  transition: all 0.3s;
  box-sizing: border-box;
}
.tlpv-form-control.has-text {
  background-color: rgba(255, 255, 255, 0.1) !important;
}
.tlpv-form-control::placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
  opacity: 1 !important;
}
.tlpv-form-control:focus {
  outline: 2px solid rgba(25, 150, 250, 0.5);
  border-color: rgba(25, 150, 250, 0.5);
  box-shadow: 0 0 8px rgba(25, 150, 250, 0.3);
}
.tlpv-btn {
  width: 100%;
  padding: 14px;
  background-color: #1996FA;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  transition: all 0.3s;
}
.tlpv-btn:hover {
  background-color: #1E2F41;
  box-shadow: 0 2px 6px rgba(25, 150, 250, 0.2);
}
.tlpv-btn:active {
  transform: scale(0.98);
}
.tlpv-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.tlpv-info-text {
  text-align: center;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 20px;
  font-size: 14px;
}
.tlpv-info-text a {
  color: #6ecfff;
}

/* Alert de error */
.tlpv-alert {
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 14px;
  margin-bottom: 16px;
}
.tlpv-alert-error {
  background: rgba(220, 53, 69, 0.2);
  border: 1px solid rgba(220, 53, 69, 0.6);
  color: #ff8a95;
}

/* Mensaje de exito */
.tlpv-success-box {
  text-align: center;
  padding: 52px 24px;
}
.tlpv-success-icon {
  width: 76px;
  height: 76px;
  background: rgba(39, 174, 96, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: #27ae60;
}
.tlpv-success-box h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 10px;
  font-family: 'Montserrat', 'Arial', sans-serif;
}
.tlpv-success-box p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.97rem;
  line-height: 1.65;
  font-family: 'Montserrat', 'Arial', sans-serif;
}
