/* フォーム全体のレイアウト */
#contact-form {
  /*max-width: 600px;*/
  width: 90%;
  margin: 0 auto;
  padding: 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

/* 各フィールドのブロック */
#contact-form div {
  margin-bottom: 24px;
}

/* ラベル */
#contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
  color: #333;
}

/* 入力欄（共通） */
#contact-form input,
#contact-form textarea {
  width: 95%;
  padding: 12px 14px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fafafa;
  transition: border-color 0.2s, background 0.2s;
}

/* フォーカス時の強調 */
#contact-form input:focus,
#contact-form textarea:focus {
  border-color: #0078d4;
  background: #fff;
  outline: none;
}

/* 入力欄（内容専用） */
#contact-form textarea {
  min-height: 160px;
}

/* 送信ボタン */
#submit-btn {
  width: 100%;
  padding: 14px;
  font-size: 18px;
  font-weight: 600;
  background: #0078d4;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 5px 5px 10px rgba(0,0,0,0.3);
}

#submit-btn:hover:not(:disabled) {
  background: #005fa3;
}

#submit-btn:disabled {
  background: #9bbad1;
  cursor: not-allowed;
}

/* ステータス表示 */
#form-status {
  margin-top: 16px;
  font-weight: bold;
  text-align: center;
}
