@charset "utf-8";
/* CSS Document */
<style>
#facebook-popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  direction: rtl;
}

#facebook-popup-box {
  background: white;
  padding: 30px;
  border-radius: 20px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
  position: relative;
  animation: fadeIn 0.5s ease-in-out;
}

#facebook-popup-box h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #333;
}

#facebook-popup-box p {
  margin-bottom: 20px;
  font-size: 1rem;
  color: #444;
}

#facebook-popup-box .note {
  font-size: 0.85rem;
  color: #777;
}

#popup-email-form input {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ccc;
  margin-bottom: 10px;
  font-family: inherit;
}

#popup-email-form button {
  width: 100%;
  padding: 10px;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
}

#popup-email-form button:hover {
  background-color: #218838;
}

#popup-close {
  position: absolute;
  top: 10px; left: 10px;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #888;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}
</style>