/* 全要素のリセット */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ページ全体のスタイル */
body {
    font-family: Arial, sans-serif;
    background-color: #fff; /* 背景色を白に設定 */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* 中央寄せのためのコンテナ */
.container {
    padding: 30px;
    border-radius: 10px;
    width: 100%;
    max-width: 700px; /* 最大幅を700pxに設定 */
    margin: 0 20px;
}

/* 見出しのスタイル */
h1 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}

/* テキスト入力欄のスタイル */
input {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

/* ボタンのスタイル */
button {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}

/* リンクの中央寄せ */
.link-container {
    text-align: center; /* リンク全体を中央寄せ */
    margin-top: 20px;
}

/* リンクのスタイル */
a.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

a.btn:hover {
    background-color: #0056b3;
}

/* メディアクエリでスマホ対応 */
@media screen and (max-width: 600px) {
    h1 {
        font-size: 20px;
    }

    input[type="password"], button {
        padding: 10px;
        font-size: 14px;
    }
}