.reseller-registration-form {
  max-width: 400px;
  margin: 50px auto;
  padding: 2rem;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-family: 'Segoe UI', sans-serif;
}

.reseller-registration-form h2 {
  margin-bottom: 1.5rem;
  color: #333;
  text-align: center;
}

.reseller-registration-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: #444;
  font-weight: 500;
}

.reseller-registration-form input {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 1.2rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  transition: border 0.3s;
}

.reseller-registration-form input:focus {
  border-color: #007bff;
  outline: none;
}

.reseller-registration-form button {
  width: 100%;
  padding: 10px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.reseller-registration-form button:hover {
  background: #0056b3;
}