@charset "utf-8";
/* CSS Document */
.popup {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.3);
  justify-content: center;
  align-items: center;
  z-index: 9999999999;
  backdrop-filter: blur(2px);
}

.popup-content {
  background: #fff;
  padding: 20px;
  max-width: 800px;
  width: 95%;
  border-radius: 12px;
  display: flex;
  gap: 20px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  animation: fadeIn 0.3s ease-in-out;
  flex-wrap: wrap;
}

.popup-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px;
}

.popup-left h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.popup-left p {
  font-size: 16px;
  color: #555;
}

.popup-right {
  flex: 1;
  text-align: center;
  padding: 10px;
}

.popup-right input,
.popup-right select {
  width: 90%;
  padding: 8px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.popup-right button {
  padding: 10px 20px;
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 10px;
  display: inline-block;
  text-align: left;
}
.popup-right form {
  text-align: left;
}

.popup-right button:hover {
  background-color: #0056b3;
}
.popup-right input,
.popup-right select {
  width: 90%;
  padding: 6px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 400;
  font-family: inherit;
  box-sizing: border-box;
  appearance: none;
}

.close-btn {
  position: absolute;
  top: 10px; right: 12px;
  font-size: 20px;
  cursor: pointer;
}

@keyframes fadeIn {
  from {opacity: 0; transform: scale(0.9);}
  to {opacity: 1; transform: scale(1);}
}

/* Responsive */
@media (max-width: 600px) {
  .popup-content {
    flex-direction: column;
    text-align: center;
  }
  .popup-left, .popup-right {
    flex: 100%;
  }
}
