/**
 * アフィリエイトフォーム フロントエンド用スタイル
 */

.affiliate-form-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}

.affiliate-form .form-group {
  margin-bottom: 20px;
}

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

.affiliate-form .required {
  color: #e32;
  margin-left: 5px;
}

.affiliate-form .form-control {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

.affiliate-form textarea.form-control {
  min-height: 150px;
}

.affiliate-form .radio-group,
.affiliate-form .checkbox-group {
  margin-top: 5px;
}

.affiliate-form .radio-item,
.affiliate-form .checkbox-item {
  margin-bottom: 8px;
}

.affiliate-form .radio-item label,
.affiliate-form .checkbox-item label {
  display: inline;
  font-weight: normal;
  margin-left: 5px;
}

.affiliate-form .submit-btn {
  background-color: #0073aa;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
}

.affiliate-form .submit-btn:hover {
  background-color: #005177;
}

.affiliate-form .submit-btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

/* メッセージスタイル */
#form-message {
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 4px;
}

#form-message .form-error {
  background-color: #ffebee;
  border: 1px solid #ffcdd2;
  color: #b71c1c;
}

#form-message .form-success {
  background-color: #e8f5e9;
  border: 1px solid #c8e6c9;
  color: #1b5e20;
}
