/* app/static/style.css */
/* アプリケーション固有のスタイルを定義します。 */

body {
    /* 全体の背景色とフォントサイズ */
    background-color: #FFFFF0; /* Ivory */
    font-size: 120%;
    font-family: 'Helvetica Neue', 'Arial', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Meiryo', sans-serif;
}

/* カスタムヘッダー/フッター背景色 */
.bg-shozen-green {
    background-color: #005d2d;
}

/* フッターの文字色 */
.footer-custom {
    color: #FFFFFF; /* フッターの文字色を白に変更 */
}

.card-footer .stretched-link {
    text-decoration: none;
}

/* ログイン画面の調整 */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

