/* ==============================
   HOST FORM – MODULO CUSTOM HOSTS
   ============================== */

.custom-host-form {
  max-width: 900px;
  margin: 40px auto;
  padding: 40px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.custom-host-form h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
  color: #1f2937;
}

.custom-host-form hr {
  margin: 40px 0;
  border: none;
  border-top: 1px solid #eee;
}

.custom-host-form input[type="text"],
.custom-host-form input[type="email"],
.custom-host-form input[type="number"],
.custom-host-form select,
.custom-host-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 18px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  background: #f9fafb;
  font-size: 15px;
  transition: all 0.2s ease;
}

.custom-host-form textarea {
  min-height: 120px;
  resize: vertical;
}

.custom-host-form input:focus,
.custom-host-form select:focus,
.custom-host-form textarea:focus {
  outline: none;
  border-color: #2563eb;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}

.custom-host-form label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 14px;
  color: #374151;
}

.custom-host-form input[type="file"] {
  margin-bottom: 20px;
  font-size: 14px;
}

.custom-host-form button[type="submit"] {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.custom-host-form button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37,99,235,0.3);
}

@media (max-width: 768px) {
  .custom-host-form {
    padding: 24px;
  }
}

