.pm-form-container {
  max-width: 800px;
  margin: 40px auto;
  padding: 25px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.pm-form h2 {
  margin-bottom: 20px;
  font-size: 22px;
  text-align: center;
}

.pm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.pm-field {
  display: flex;
  flex-direction: column;
}

.pm-field label {
  font-size: 14px;
  margin-bottom: 5px;
  font-weight: 600;
}

.pm-field input,
.pm-field select {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  transition: 0.2s;
}

.pm-field input:focus,
.pm-field select:focus {
  border-color: #0073aa;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.2);
}

.pm-btn {
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  background: #0073aa;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.2s;
}

.pm-btn:hover {
  background: #005f8d;
}

/* mobile */
@media (max-width: 600px) {
  .pm-grid {
    grid-template-columns: 1fr;
  }
}
