/* --- ボタンスタイル --- */
.button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background-color: #e60039;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.button:hover {
    background-color: #c00030;
}

/* --- フォーム --- */
input[type="text"], input[type="email"], input[type="password"], textarea {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

textarea {
    height: 120px;
}
