/* contact-styles.css */
.contact-form {
    margin-top: 20px; /* フォーム上部に20pxのマージン */
    width: 50%; /* フォームの幅を50%に設定 */
    margin-left: auto; /* 左端を自動で配置 */
    margin-right: auto; /* 右端を自動で配置 */
    padding: 40px; /* フォームの内部に20pxのパディング */
    border-radius: 34px;
    background: #F7F5EC;
    box-shadow:  7px 7px 14px #bebdb6,
                -7px -7px 14px #ffffff;
    margin-bottom: 50px;
    height: 450px;
}

.form-group {
    margin-bottom: 20px; /* 各フォームグループの下に20pxのマージン */
}

label {
    display: block; /* ラベルをブロック要素として表示 */
    font-size: 16px;
    margin-bottom: 5px; /* ラベル下に5pxのマージン */
}

input,
textarea {
    width: calc(100% - 16px); /* 幅からパディングを引いた値を設定 */
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    background-color: #39927A;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-left: calc(50% - 30px); /* 幅からボタン幅の半分を引いた値を設定 */
}

button:hover {
    background-color: #004A4C;
}