/* Email Popup Styles */
.email-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.email-popup {
  background-color: #000000;
  color: #ffffff;
  border-radius: 10px;
  padding: 30px;
  width: 90%;
  max-width: 500px;
  position: relative;
  border: 2px solid #256D85;
  box-shadow: 0 0 20px rgba(37, 109, 133, 0.5);
}

.email-popup h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.email-popup p {
  margin-bottom: 20px;
  text-align: center;
  font-family: "Open Sans", sans-serif;
}

.email-popup-form {
  display: flex;
  flex-direction: column;
}

.email-popup-form .form-group {
  margin-bottom: 15px;
}

.email-popup-form label {
  margin-bottom: 5px;
  display: block;
  font-family: "Open Sans", sans-serif;
}

.email-popup-form input[type="email"] {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #256D85;
  background-color: #ffffff;
  color: #000000;
  font-family: "Open Sans", sans-serif;
}

.email-popup-form button {
  background-color: #256D85;
  color: #ffffff;
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  margin-top: 10px;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
}

.email-popup-form button:hover {
  background-color: #ffffff;
  color: #000000;
}

.close-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #ffffff;
}

.success-message {
  display: none;
  text-align: center;
  color: #4CAF50;
  margin-top: 15px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .email-popup {
    width: 90%;
    padding: 20px;
  }
  
  .email-popup h3 {
    font-size: 20px;
  }
}