.mhfs-wrap {
  max-width: 900px;
  margin: 40px auto;
  font-family: "Poppins", sans-serif;
  color: #222;
}
.mhfs-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  padding: 40px 50px;
}
.mhfs-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 25px;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
}
.mhfs-label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 14px;
}
.mhfs-input, .mhfs-select, .mhfs-textarea {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 15px;
  background: #fafafa;
  transition: all .2s ease;
}
.mhfs-input:focus, .mhfs-select:focus, .mhfs-textarea:focus {
  outline: none;
  border-color: #ff5a5f;
  background: #fff;
}
.mhfs-btn {
  background: #ff5a5f;
  border: none;
  color: white;
  border-radius: 8px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all .3s ease;
}
.mhfs-btn:hover { background: #e0474c; }
.mhfs-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.mhfs-warning {
  background: #fff4e6;
  border-left: 4px solid #ff5a5f;
  padding: 12px 16px;
  border-radius: 8px;
}
@media (max-width:768px){
  .mhfs-card { padding: 20px; }
  .mhfs-row { grid-template-columns: 1fr; }
}
