/* 全体のスタイル */
.main {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* ログインコンテナ */
.login-container {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 400px;
}

/* 見出し */
h2 {
    margin-top: 0;
    color: #333333;
}

/* メッセージ */
.error-message p {
    color: #d9534f;
    font-weight: bold;
}

.logout-message p {
    color: #5bc0de;
    font-weight: bold;
}

/* フォームグループ */
.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #555555;
    font-size: 14px;
}

input[type="text"], input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    font-size: 14px;
}

/* ボタン */
.button1 {
    width: 100%;
    padding: 12px;
    background-color: #28a745; /* 明るいグリーン */
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase; /* テキストを大文字に */
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* 立体感のある影 */
}

.button1:hover {
    background-color: #218838; /* 濃いグリーン */
    transform: scale(1.02); /* 少し拡大してインタラクティブに */
}

.button1:active {
    background-color: #1e7e34; /* 押したときの色 */
    transform: scale(0.98); /* 少し縮小 */
}