/* 全体の背景 */
body {
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #c3e4ff, #e2efff);
    font-family: "Segoe UI", "Hiragino Sans", "Noto Sans JP", sans-serif;
}

/* 真ん中に配置 */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
}

/* ログインカード */
.login-card {
    background: white;
    width: 100%;
    max-width: 420px;
    padding: 30px 35px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    text-align: center;
}

/* タイトル */
.login-title {
    margin-bottom: 25px;
    font-size: 26px;
    color: #333;
    font-weight: bold;
}

/* Django form の見た目を整える */
.login-form p {
    text-align: left;
    margin-bottom: 15px;
}

.login-form input {
    width: 100%;
    padding: 10px 12px;
    font-size: 16px;
    border-radius: 6px;
    border: 1px solid #ccc;
    outline: none;
    transition: 0.2s;
}

.login-form input:focus {
    border-color: #4d8ef7;
    box-shadow: 0 0 5px rgba(77, 142, 247, 0.4);
}

/* ログインボタン */
.login-btn {
    width: 100%;
    background: #4d8ef7;
    border: none;
    padding: 12px;
    margin-top: 10px;
    font-size: 18px;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: 0.2s;
}

.login-btn:hover {
    background: #356fe0;
}

/* メッセージ表示 */
.messages {
    margin-bottom: 15px;
}

.msg {
    padding: 10px;
}