* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.title {
    margin: 5px auto;
    padding: 5px;
    text-align: center;
    color: #333;
}

.main {
    max-width: 345px;
    margin: 0 auto;
    padding: 20px 10px;
}

.content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    row-gap: 8px;
    align-items: center;
}

.content label {
    font-size: 14px;
    color: #606266;
    text-align: right;
    padding-right: 8px;
}

.input-value {
    margin: 2px;
    padding: 4px 6px;
    border: 1px solid #dcdfe6;
    border-radius: 3px;
    background: #f5f7fa;
    color: #333;
    font-size: 13px;
    outline: none;
}

/* 新增：操作按钮区 */
.action-area {
    margin-top: 25px;
    text-align: center;
}

.btn-auth {
    width: 100%;
    height: 36px;
    background: #409eff;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-auth:hover:not(:disabled) {
    background: #66b1ff;
}

.btn-auth:disabled {
    background: #a0cfff;
    cursor: not-allowed;
}

.status-tip {
    margin-top: 12px;
    font-size: 12px;
    color: #909399;
    min-height: 18px;
}

.status-tip.error {
    color: #f56c6c;
}

.tips {
    text-align: center;
    font-size: 12px;
    color: #666;
    margin-top: 40px;
}

.tips a {
    color: #666;
    text-decoration: none;
}
