/* 入力フィールドのスタイル */
input[type="text"], input[type="password"] {
    width: 500px; /* 横幅を300pxに設定 */
    padding: 10px; /* 内側の余白を設定 */
    margin-bottom: 10px; /* 下部に余白を設定 */
    font-size: 16px; /* フォントサイズを調整 */
}

/* ボタンのスタイル */
button {
    padding: 10px 20px; /* ボタンの余白 */
    font-size: 16px; /* フォントサイズを調整 */
    cursor: pointer; /* カーソルをポインタに設定 */
}

/* 結果のメッセージスタイル */
#result {
    margin-top: 20px; /* 上部に余白を設定 */
    font-size: 16px; /* フォントサイズを調整 */
    color: #333; /* テキストカラー */
}

/* ログアウトボタンのスタイル */
#logoutButton {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
}
#logoutButton:hover {
    background-color: #0056b3;
}

/* タイトルのスタイル */
.title {
    font-size: 24px; /* タイトルのフォントサイズを大きく設定 */
    font-weight: bold; /* 太字に設定 */
    color: #17812e; /* テキストカラー */
    margin-bottom: 20px; /* タイトル下に余白を追加 */
    text-transform: uppercase; /* すべて大文字に（オプション） */
    border-bottom: 2px solid #a0a0a0; /* 下線を追加 */
    padding-bottom: 10px; /* 下線とテキスト間のスペースを確保 */
}

/* 中央揃え ################################################################### */
/* 親コンテナのスタイル */
.center-container {
    display: flex;          /* フレックスボックスを使用 */
    justify-content: center; /* 水平方向に中央揃え */
    align-items: center;    /* 垂直方向に中央揃え */
    height: 100vh;          /* ビューポート全体の高さを設定 */
    margin: 0;              /* 外側の余白をリセット */
    background-color: #f9f9f9; /* 背景色を設定（必要に応じて変更） */
}

/* 子要素を中央に */
.center-content {
    text-align: center;      /* テキストを中央揃え */
    padding: 20px;           /* 内側に余白を追加 */
    background: rgb(237, 236, 236);       /* 背景を白に設定 */
    border-radius: 10px;     /* 角を丸くする */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* 軽い影を付ける */
}
/* //中央揃え ################################################################### */

/* spinner ################################################################### */

.spinner {
    border: 12px solid #f3f3f3; /* 枠線を太くして目立たせる */
    border-top: 12px solid #007BFF; /* 枠線のトップだけ色を指定 */
    border-radius: 50%; /* 円形を維持 */
    width: 70px; /* 幅を大きくする */
    height: 70px; /* 高さを大きくする */
    animation: spin 2s linear infinite;/* 回転速度を遅く（2秒/1回転） */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* //spinner ################################################################### */