.leadform-container {
  max-width: 400px;
  margin: 50px auto;
  padding: 30px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.15);
  font-family: Arial, sans-serif;
}

.leadform-title {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

.leadform-group {
  margin-bottom: 15px;
}

.leadform-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.leadform-group input,
.leadform-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

.leadform-button {
  width: 100%;
  padding: 14px;
  background: #CC1414;
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.leadform-button:hover {
  background: #19646f;
}

/* Модалка */
.leadform-modal {
  display: none; /* скрыта по умолчанию */
  position: fixed;
  top:0; left:0;
  width: 100%; height:100%;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
}

.leadform-modal-content {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  max-width: 300px;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.leadform-close-btn {
  margin-top: 15px;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  background: #28a745;
  color: #fff;
  cursor: pointer;
}
