/* 极简现代登录样式 */
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

#max {
    width: 380px;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

#title {
    font-size: 24px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 32px;
    letter-spacing: -0.5px;
}

#form {
    width: 100%;
}

div input {
    width: 100%;
    height: 48px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0 16px;
    font-size: 15px;
    margin-bottom: 16px;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

div input:focus {
    outline: none;
    border-color: #4c51bf;
    box-shadow: 0 0 0 3px rgba(76, 81, 191, 0.1);
}

#user_pwd {
    margin-top: 16px;
}

#btn {
    width: 100%;
    margin-top: 24px;
}

#action {
    width: 100%;
    height: 48px;
    background: #4c51bf;
    color: white;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

#action:hover {
    background: #434190;
}

#statement {
    display: none;
}