/* 背景画像 */
body.login-bg {
    background-image: url('../dra/grass_texture.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

/* 上部タイトル */
.login-header {
    text-align: center;
    margin-top: 40px;
}

.login-header h1 {
    font-size: 42px;
    color: white;
    text-shadow: 0 0 10px rgba(0,0,0,0.6);
}

/* ログインボックス */
.login-box {
    background: rgba(255,255,255,0.92);
    padding: 30px;
    border-radius: 12px;
    width: 350px;
    margin: auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    text-align: center;
}

.login-box h2 {
    margin-bottom: 20px;
    color: #0033A0;
}

.login-box input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.login-box button {
    width: 100%;
    padding: 12px;
}

/* エラー */
.error {
    color: red;
    margin-bottom: 10px;
}

/* フッター */
.footer-copy {
    text-align: center;
    font-size: 12px;
    color: white;
    margin-bottom: 10px;
    text-shadow: 0 0 5px rgba(0,0,0,0.7);
}