@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');

.gradient-btn {
  background: linear-gradient(45deg, #e60000, #ff6666);
  box-shadow: 0 4px 15px rgba(230, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.gradient-btn:hover {
  background: linear-gradient(45deg, #ff6666, #e60000);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 0, 0, 0.4);
}
#exitPopup, #successPopup {
  display: none;
  animation: slideIn 0.5s ease-in-out;
}
@keyframes slideIn {
  from { transform: translateY(-50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.popup-content {
  background: linear-gradient(135deg, #ffffff, #f0f4ff);
  border: 2px solid #2563eb;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.popup-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #2563eb, #e60000);
}
.phone-input {
  transition: all 0.3s ease;
}
.phone-input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 8px rgba(37, 99, 235, 0.3);
}
.error {
  border-color: #e60000;
  box-shadow: 0 0 8px rgba(230, 0, 0, 0.3);
}