/* Overlay */
.llrp-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
}
.llrp-overlay.hidden {
  display: none;
}

/* Popup container */
.llrp-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 20px;
  z-index: 9999;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.llrp-popup.hidden {
  display: none;
}
.llrp-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  float: right !important;
}

/* Step layout */
.llrp-step {
  margin-top: 20px;
}
.llrp-step h2 {
  margin-bottom: 10px;
}
.llrp-step input {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px !important;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.llrp-step button {
  width: 100%;
  padding: 10px;
  background: #385b02;
  border: none;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
}
.llrp-step label {
  display: block;
  margin-bottom: 10px;
}
.llrp-feedback {
  color: #d00;
  margin-top: 5px;
}

/* Prevent body scroll */
.llrp-no-scroll {
  overflow: hidden;
}

/* Utility: esconde qualquer elemento com .hidden */
.hidden {
  display: none !important;
}

/* === Tipografia e espaçamentos === */
.llrp-popup h2 {
  font-size: 1.5rem;
  /* 24px numa base de 16px */
  margin-bottom: 0.5em;
  line-height: 1.2;
}

.llrp-popup p {
  font-size: 1rem;
  /* 16px */
  margin-bottom: 1em;
  line-height: 1.5;
}

.llrp-step label {
  font-size: 0.9rem;
  /* 14px */
  margin-bottom: 0.5em;
  display: block;
}

.llrp-step .llrp-feedback {
  font-size: 0.85rem;
  /* 13px */
  margin-top: 0.25em;
}

/* Placeholder dos inputs */
.llrp-popup input::placeholder {
  font-size: 1rem;
  opacity: 0.7;
}

@media (max-width: 762px) {
  .llrp-login-options {
    display: block !important;
  }
}
