@charset "utf-8";

/* 全体のスタイル */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #ecdf96;
    color: #13111d;
    /* display: flex;
    justify-content: center;
    align-items: center; */
    /* height: 100vh; */
}

/* フォームコンテナ */
.container {
    background: #fff;
    border: 2px solid #ecdf96; /* ゴールドの枠線 */
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
    max-width: 600px;
    width: 100%;
    text-align: center;
    margin: 10em auto 5em;
}
a {
    text-decoration: none;
    color: inherit;
}
/* タイトルデザイン */
h1 {
    color: #13111d; /* ゴールド */
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* ラベルのデザイン */
label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
    color: #13111d;
    text-align: left;
}

/* 入力フィールド */
input, textarea, select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 2px solid #ecdf96; /* ゴールドの枠線 */
    border-radius: 8px;
    background: #fff;
    font-size: 16px;
    transition: border-color 0.3s;
}

input:focus, textarea:focus {
    border-color: #ffcc00;
    outline: none;
}

/* 送信ボタン */
button {
    margin-top: 1rem;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    background: #d4af37; /* ゴールド */
    color: black;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    font-weight: bold;
}

button:hover {
    background: #ffcc00;
    transform: scale(1.05);
}
@media (max-width: 768px) {
    .container {
        margin: 3em 0;
    }
}