/* ログインページ専用 */
.login-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;            /* 画面全体の高さ */
    background: #f0f2f5;      /* 背景グレー（調整可） */
}

.login-box {
    background: #fff;
    padding: 40px 50px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    width: 360px;
    max-width: 90%;
    text-align: center;
}

.login-box h2 {
    margin-bottom: 24px;
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.login-box label {
    display: block;
    text-align: left;
    margin: 8px 0 4px;
    font-weight: 600;
    color: #444;
}

.login-box input[type="text"],
.login-box input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 16px;
    font-size: 14px;
}

.login-box button {
    width: 100%;
    padding: 10px;
    background: #3b6ea8;      /* 青ボタン */
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.login-box button:hover {
    background: #335f91;
}
