/* General body styling */
body {
  font-family: sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 20px;
  background-color: white;
  color: yellow;
}

h1, h2 {
  color: #1F6F4C; /* Darker Green for headings */
}

/* Form styling */
.affiliate-form {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 20px auto;
}

.affiliate-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

.affiliate-form input[type="text"],
.affiliate-form input[type="email"],
.affiliate-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box; /* Ensures padding doesn't increase total width */
}

.affiliate-form textarea {
  resize: vertical; /* Allows vertical resizing of the textarea */
}

.affiliate-form button {
  background-color: #007bff;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.affiliate-form button:hover {
  background-color: #0056b3;
}

.affiliate-form p {
  color: #007bff;
}

.affiliate-form label {
  color: #007bff;
}