/* ページ全体の基本スタイル */
body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #ffffff; /* 背景を白に設定 */
    color: #333; /* テキストの基本色をダークグレーに */
}

/* タイトルのスタイル */
h1 {
    font-size: 48px; /* フォントサイズをさらに大きく */
    color: #FFB400; /* タイトルは黄色で強調 */
    margin-bottom: 40px;
    font-weight: normal;
}

/* フォームのスタイル */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 400px;
}

/* 入力フィールドのスタイル */
input[type="text"], textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 24px;
    font-size: 16px;
    font-family: Arial, sans-serif; /* フォントを統一 */
    color: #333;
    background-color: #ffffff;
    outline: none;
    transition: box-shadow 0.2s;
}

input[type="text"]:focus, textarea:focus {
    box-shadow: 0 0 5px rgba(255, 180, 0, 0.5);
    border-color: #FFB400;
}

/* テキストエリアのスタイル */
textarea {
    height: 100px; /* 高さを確保 */
    resize: vertical; /* 高さを手動調整可能 */
    border-radius: 24px; /* テキストエリアに適した角丸 */
}

/* ボタンのスタイル */
button[type="submit"] {
    padding: 10px 20px;
    font-size: 16px;
    color: #ffffff;
    background-color: #FFB400;
    border: none;
    border-radius: 24px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

button[type="submit"]:hover {
    background-color: #E0A300;
}
