body {
    font-family: 'Noto Sans JP', 'Helvetica Neue', Arial, sans-serif;
    background-color: #f0f4f9;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}
.login-box {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
}
.login-title {
    text-align: center;
    color: #07569e;
    margin-top: 0;
    margin-bottom: 24px;
    font-size: 22px;
    font-weight: bold;
}
.login-subtitle {
    text-align: center;
    color: #666;
    font-size: 13px;
    margin-bottom: 24px;
}
.form-group {
    margin-bottom: 20px;
}
.form-label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
}
.input-field {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
    transition: border-color 0.2s;
}
.input-field:focus {
    outline: none;
    border-color: #07569e;
    box-shadow: 0 0 0 2px rgba(7,86,158,0.15);
}
.btn-submit {
    width: 100%;
    padding: 14px;
    background-color: #07569e;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}
.btn-submit:hover {
    background-color: #05407a;
}
.alert-error {
    background-color: #ffebee;
    color: #c62828;
    padding: 10px 14px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 14px;
    border-left: 4px solid #c62828;
}

/* ログページ用 */
.pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    margin: 20px 0;
}
.pagination a, .pagination span {
    padding: 8px 12px;
    border: 1px solid #ccc;
    text-decoration: none;
    color: #07569e;
    border-radius: 4px;
    font-size: 14px;
    background: #fff;
}
.pagination .current {
    background-color: #07569e;
    color: #fff;
    border-color: #07569e;
    font-weight: bold;
    pointer-events: none;
}
.pagination a:hover {
    background-color: #e3f2fd;
}
.log-url {
    word-break: break-all;
    max-width: 300px;
    font-size: 0.9em;
}
.log-ua {
    word-break: break-all;
    max-width: 250px;
    font-size: 0.8em;
    color: #666;
}
.log-time {
    font-size: 0.9em;
    white-space: nowrap;
}
