/* 授权登录/个人中心专用样式，避免与旧注册页面样式冲突 */
.auth-page{
    min-height: 100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding: 60px 16px;
    box-sizing: border-box;
}

.auth-card{
    width: 560px;
    max-width: 92vw;
    background: rgba(255,255,255,0.96);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.55);
    box-shadow: 0 18px 40px rgba(0,0,0,0.14);
    padding: 26px 28px;
}

.auth-title{
    text-align:center;
    font-size: 26px;
    color: #2b2f36;
    margin: 0 0 18px;
    font-weight: 700;
}

.auth-form{
    margin-top: 10px;
}

.auth-field{
    margin-bottom: 14px;
}

.auth-field .layui-input{
    height: 44px;
    border-radius: 8px;
}

.auth-btn{
    width: 100%;
    height: 44px;
    border-radius: 8px;
    font-size: 16px;
}

.auth-msg{
    margin-top: 12px;
    text-align:center;
    font-size: 14px;
    padding: 8px 10px;
    border-radius: 8px;
}
.auth-msg.error{
    background: rgba(255, 77, 79, 0.10);
    color: #ff4d4f;
    border: 1px solid rgba(255, 77, 79, 0.25);
}
.auth-msg.ok{
    background: rgba(30, 158, 255, 0.10);
    color: #1e9fff;
    border: 1px solid rgba(30, 158, 255, 0.25);
}

/* 个人中心信息行 */
.auth-info{
    margin-top: 6px;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 10px;
    overflow:hidden;
}
.auth-row{
    display:flex;
    align-items:center;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.auth-row:last-child{
    border-bottom: none;
}
.auth-key{
    width: 190px;
    color: #6b7a90;
    font-size: 14px;
}
.auth-val{
    flex:1;
    color: #2b2f36;
    font-size: 14px;
    word-break: break-all;
}

.auth-actions{
    margin-top: 16px;
}
.auth-actions form{
    display:flex;
    gap: 10px;
    align-items:center;
}
.auth-actions input.layui-input{
    flex:1;
    height: 44px;
    border-radius: 8px;
}
.auth-actions button.layui-btn{
    height: 44px;
    line-height: 44px;
    border-radius: 8px;
    white-space: nowrap;
}

