/* Estilos base do seu site */
body,
html {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", sans-serif;
  background-color: #000;
  color: #fff;
}

/* Seus outros estilos de faq.css e etc. podem ser incluídos aqui ou via <link> */

/* Layout do Login (do seu código original) */
.qref-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.qref-card {
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid #0f0;
  border-radius: 15px;
  padding: 3rem;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 0 25px rgba(0, 255, 0, 0.2);
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #0f0;
  font-size: 0.9rem;
}

.form-group input {
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #0f0;
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: rgba(0, 255, 0, 0.1);
  border: 2px solid #0f0;
  border-radius: 50px;
  color: #0f0;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: #0f0;
  color: #000;
}

.register-link {
  color: #0f0;
  text-decoration: none;
}

/* Estilos dos Popups */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  backdrop-filter: blur(5px);
}

.popup-overlay.active {
  display: flex;
  animation: fadeIn 0.3s ease-out;
}

.popup-content {
  background: rgba(0, 0, 0, 0.95);
  border: 1px solid #0f0;
  border-radius: 15px;
  padding: 2.5rem;
  width: 90%;
  max-width: 450px;
  box-shadow: 0 0 30px rgba(0, 255, 0, 0.3);
  text-align: center;
}

.popup-content h2 {
  color: #0f0;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.popup-content p {
  color: #fff;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.popup-content a.resend-link {
  color: #0f0;
  font-weight: bold;
  cursor: pointer;
  text-decoration: underline;
}

.popup-btn {
  padding: 15px;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  width: 100%;
  background: #0f0;
  color: #000;
  border: none;
}

.loader {
  width: 50px;
  height: 50px;
  border: 5px solid #333;
  border-top-color: #0f0;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 20px auto;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
