#kt-custom-form {
  max-width: 900px;
  margin: 30px auto;
  padding: 25px;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.03);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

.kt-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.kt-col {
  flex: 1;
  min-width: 45%;
}

.kt-full {
  width: 100%;
  margin-top: 12px;
}

#kt-custom-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #222;
}

#kt-custom-form input[type="text"],
#kt-custom-form input[type="email"],
#kt-custom-form input[type="url"],
#kt-custom-form select,
#kt-custom-form input[type="file"],
#kt-custom-form textarea {
  width: 100%;
  padding: 9px 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  font-size: 14px;
}

.kt-btn {
  background: #0073aa;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
}

.kt-btn:hover {
  background: #005f86;
}

.kt-success {
  color: #117a37;
  background: #e6f7ea;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid rgba(17,122,55,0.12);
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .kt-col {
    min-width: 100%;
  }
}
