/* 画面全体のスタイル */
body {
    font-family: 'Arial', sans-serif;
    background: url('background.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* ログインボックスのスタイル */
.login-container {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    width: 300px;
    text-align: center;
}

/* 見出し */
h2 {
    margin-bottom: 20px;
    color: #333;
}

/* 入力グループ */
.input-group {
    margin-bottom: 15px;
    text-align: left;
}

/* ラベル */
.input-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

/* 入力フィールド */
.input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

/* ログインボタン */
.btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 10px 15px;
    width: 100%;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

/* ホバー時のエフェクト */
.btn:hover {
    background: #2980b9;
}

/* エラーメッセージ */
.error {
    color: red;
    font-size: 14px;
    margin-bottom: 10px;
}
