/* Path: reqrd.com/free_trial/style.css */

/* ========================== */
/* Modal Overlay + Positioning */
/* ========================== */

.qr-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.65);
  display: none; /* shown with JS */
  align-items: center;
  justify-content: center;
  z-index: 10000;
  animation: fadeIn 0.3s ease-in-out;
}

/* ========================== */
/* Modal Box */
/* ========================== */

.qr-modal {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 420px;
  text-align: center;
  position: relative;
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
  animation: slideUp 0.3s ease-in-out;
}

.qr-modal h2 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.qr-subtext {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 20px;
}

/* ========================== */
/* Close Button */
/* ========================== */

.qr-close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 24px;
  background: none;
  border: none;
  color: #aaa;
  cursor: pointer;
}

.qr-close-btn:hover {
  color: #333;
}

/* ========================== */
/* Input Field + Buttons */
/* ========================== */

#qrUrlInput {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.generate-btn,
.download-btn {
  padding: 10px 16px;
  background: #3498db;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 12px;
  transition: background 0.2s ease;
}

.generate-btn:hover,
.download-btn:hover {
  background: #2980b9;
}

/* ========================== */
/* Signup CTA Box */
/* ========================== */

.signup-cta {
  background: #f0f8ff;
  margin-top: 20px;
  padding: 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #333;
}

.signup-cta p {
  margin: 6px 0;
}

.signup-cta .cta-button {
  margin-top: 10px;
  display: inline-block;
  background: #2ecc71;
  padding: 10px 16px;
  color: white;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.signup-cta .cta-button:hover {
  background: #27ae60;
}

/* ========================== */
/* Animations */
/* ========================== */

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
